1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-08 00:16:09 +00:00

fix missing semicolon

This commit is contained in:
theScrabi 2018-06-25 13:57:53 +02:00 committed by davigonz
parent 266dc37da2
commit 366459699e

View File

@ -75,7 +75,7 @@ public class HttpClient {
.protocols(Arrays.asList(Protocol.HTTP_1_1)) .protocols(Arrays.asList(Protocol.HTTP_1_1))
.followRedirects(false) .followRedirects(false)
.sslSocketFactory(sslContext.getSocketFactory(), trustManager) .sslSocketFactory(sslContext.getSocketFactory(), trustManager)
.hostnameVerifier(new BrowserCompatHostnameVerifier()) .hostnameVerifier(new BrowserCompatHostnameVerifier());
if(BuildConfig.DEBUG) { if(BuildConfig.DEBUG) {
clientBuilder.addNetworkInterceptor(new StethoInterceptor()); clientBuilder.addNetworkInterceptor(new StethoInterceptor());
} }