Bug 1210088 - Make sure the Switchboard config fetch acts like a true HTTP GET r=margaret

This commit is contained in:
Mark Finkle 2015-10-22 01:06:15 -04:00
parent e02b47c7be
commit 070f23b49b

View File

@ -405,7 +405,6 @@ public class SwitchBoard {
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setUseCaches(false);
connection.setDoOutput(true);
// get response
InputStream is = connection.getInputStream();