checkstyle corrections

Former-commit-id: 7a96e04aeb874f27248375b47ad7d1f0aee6b8dc
This commit is contained in:
Jeremy Long
2015-05-10 08:19:01 -04:00
parent aa7f903210
commit 04166766da

View File

@@ -170,7 +170,7 @@ public class NexusSearch {
public boolean preflightRequest() {
HttpURLConnection conn;
try {
URL url = new URL(rootURL, "status");
final URL url = new URL(rootURL, "status");
conn = URLConnectionFactory.createHttpURLConnection(url, useProxy);
conn.addRequestProperty("Accept", "application/xml");
conn.connect();