Index: src/org/adblockplus/brazil/BaseRequestHandler.java |
diff --git a/src/org/adblockplus/brazil/BaseRequestHandler.java b/src/org/adblockplus/brazil/BaseRequestHandler.java |
index 1378a91113c0fba0fc8899349f34ad3153d16cf3..72d3e58955790631c5c364faa49e24f22eb4fbe4 100644 |
--- a/src/org/adblockplus/brazil/BaseRequestHandler.java |
+++ b/src/org/adblockplus/brazil/BaseRequestHandler.java |
@@ -26,32 +26,32 @@ import sunlabs.brazil.util.http.MimeHeaders; |
public abstract class BaseRequestHandler implements Handler |
{ |
- |
public static final String PROXY_HOST = "proxyHost"; |
public static final String PROXY_PORT = "proxyPort"; |
public static final String AUTH = "auth"; |
+ |
protected String proxyHost; |
protected int proxyPort = 80; |
protected String auth; |
protected boolean shouldLogHeaders; |
- |
protected String prefix; |
@Override |
- public boolean init(Server server, String prefix) |
+ public boolean init(final Server server, final String prefix) |
{ |
this.prefix = prefix; |
- Properties props = server.props; |
+ final Properties props = server.props; |
proxyHost = props.getProperty(prefix + PROXY_HOST); |
- String s = props.getProperty(prefix + PROXY_PORT); |
+ final String s = props.getProperty(prefix + PROXY_PORT); |
+ |
try |
{ |
proxyPort = Integer.decode(s).intValue(); |
} |
- catch (Exception e) |
+ catch (final Exception e) |
{ |
} |
@@ -65,10 +65,10 @@ public abstract class BaseRequestHandler implements Handler |
/** |
* Dump the headers on stderr |
*/ |
- public static String dumpHeaders(int count, Request request, MimeHeaders headers, boolean sent) |
+ public static String dumpHeaders(final int count, final Request request, final MimeHeaders headers, final boolean sent) |
{ |
String prompt; |
- StringBuffer sb = new StringBuffer(); |
+ final StringBuffer sb = new StringBuffer(); |
String label = " " + count; |
label = label.substring(label.length() - 4); |
if (sent) |