Skip to content
This repository has been archived by the owner on Feb 14, 2020. It is now read-only.

Commit

Permalink
Merge 94e13be into 814b132
Browse files Browse the repository at this point in the history
  • Loading branch information
grantland committed Jan 20, 2016
2 parents 814b132 + 94e13be commit 9ce70a0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.parse.internal.signpost.basic;

import java.io.IOException;
import java.lang.reflect.Method;
import java.net.HttpURLConnection;
import java.net.URL;
Expand Down Expand Up @@ -28,7 +27,7 @@ public static HttpURLConnectionClient create() {
final Method okUrlFactoryOpen = okUrlFactoryClass.getMethod("open", URL.class);
return new HttpURLConnectionClient(true, okUrlFactory, okUrlFactoryOpen);
} catch (Exception e) {
return new HttpURLConnectionClient(true, null, null);
return new HttpURLConnectionClient(false, null, null);
}
}

Expand Down

0 comments on commit 9ce70a0

Please sign in to comment.