We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744fd96 commit 455950cCopy full SHA for 455950c
CS2ServerPicker/Services/DataGridViewService.vb
@@ -1,6 +1,4 @@
1
-Imports System.Net
2
-
3
-Module DataGridViewService
+Module DataGridViewService
4
5
' cache server flag image to prevent unnecessary requests
6
@@ -9,8 +7,6 @@ Module DataGridViewService
9
7
10
8
Dim dg As DataGridView = App.Get_DataGridView_Control()
11
12
- Dim wClient As WebClient = New WebClient()
13
14
' display each server name key value from server dictionary in the datagridview control
15
For Each kvp As KeyValuePair(Of String, String) In serverDict
16
Dim rowIndex As Integer = App.Get_DataGridView_Control().Rows().Add()
@@ -19,7 +15,6 @@ Module DataGridViewService
19
dg.Rows(rowIndex).Cells(1).Value = kvp.Key
20
Next
21
17
22
- wClient.Dispose()
23
18
End Sub
24
25
Public Sub Clear_Column_Values()
0 commit comments