checkstyle correction

Former-commit-id: e5a891ea5b438e64e8a3aa5e697cb859d1a1f09a
This commit is contained in:
Jeremy Long
2014-06-22 19:54:25 -04:00
parent f38bbf4cc7
commit 452955667c

View File

@@ -176,7 +176,7 @@ public final class Downloader {
conn = URLConnectionFactory.createHttpURLConnection(url);
conn.setRequestMethod("HEAD");
conn.connect();
int t = conn.getResponseCode();
final int t = conn.getResponseCode();
if (t >= 200 && t < 300) {
timestamp = conn.getLastModified();
} else {