Skip to content

Commit 10c0c3d

Browse files
committed
fix: accessing static variable using 'this' in instance method
1 parent 60e19b1 commit 10c0c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/browserstack/client/BrowserStackClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public void setProxy(final String proxyHost, final int proxyPort, final String p
176176
}
177177

178178
final HttpClient client = clientBuilder.build();
179-
this.HTTP_TRANSPORT = new ApacheHttpTransport(client);
179+
HTTP_TRANSPORT = new ApacheHttpTransport(client);
180180
this.requestFactory = newRequestFactory();
181181
}
182182

0 commit comments

Comments
 (0)