Skip to content

Commit 455950c

Browse files
committed
small chore
1 parent 744fd96 commit 455950c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

CS2ServerPicker/Services/DataGridViewService.vb

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
Imports System.Net
2-
3-
Module DataGridViewService
1+
Module DataGridViewService
42

53
' cache server flag image to prevent unnecessary requests
64

@@ -9,8 +7,6 @@ Module DataGridViewService
97

108
Dim dg As DataGridView = App.Get_DataGridView_Control()
119

12-
Dim wClient As WebClient = New WebClient()
13-
1410
' display each server name key value from server dictionary in the datagridview control
1511
For Each kvp As KeyValuePair(Of String, String) In serverDict
1612
Dim rowIndex As Integer = App.Get_DataGridView_Control().Rows().Add()
@@ -19,7 +15,6 @@ Module DataGridViewService
1915
dg.Rows(rowIndex).Cells(1).Value = kvp.Key
2016
Next
2117

22-
wClient.Dispose()
2318
End Sub
2419

2520
Public Sub Clear_Column_Values()

0 commit comments

Comments
 (0)