Skip to content

Commit 31510a9

Browse files
committed
typo
1 parent 8684c71 commit 31510a9

File tree

1 file changed

+1
-1
lines changed
  • imagetool/src/main/java/com/oracle/weblogic/imagetool/util

1 file changed

+1
-1
lines changed

imagetool/src/main/java/com/oracle/weblogic/imagetool/util/HttpUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public static HttpClient getOraClient(String userId, String password) {
134134
result = HttpClientBuilder.create()
135135
.setDefaultRequestConfig(config.build())
136136
.setRetryHandler(retryHandler())
137-
.setProxy(proxyHost == null ? new HttpHost(proxyHost, Integer.parseInt(proxyPort)) : null)
137+
.setProxy(proxyHost != null ? new HttpHost(proxyHost, Integer.parseInt(proxyPort)) : null)
138138
.setUserAgent("Wget/1.10")
139139
.setDefaultCookieStore(cookieStore).useSystemProperties()
140140
.setDefaultCredentialsProvider(credentialsProvider)

0 commit comments

Comments
 (0)