make final constants static
found by findbugs http://b/issue?id=1857033
This commit is contained in:
@@ -49,8 +49,8 @@ public class HttpAuthHandler extends Handler {
|
||||
|
||||
|
||||
// Message id for handling the user response
|
||||
private final int AUTH_PROCEED = 100;
|
||||
private final int AUTH_CANCEL = 200;
|
||||
private static final int AUTH_PROCEED = 100;
|
||||
private static final int AUTH_CANCEL = 200;
|
||||
|
||||
/**
|
||||
* Creates a new HTTP authentication handler with an empty
|
||||
|
||||
@@ -52,7 +52,7 @@ public class SslErrorHandler extends Handler {
|
||||
private Bundle mSslPrefTable;
|
||||
|
||||
// Message id for handling the response
|
||||
private final int HANDLE_RESPONSE = 100;
|
||||
private static final int HANDLE_RESPONSE = 100;
|
||||
|
||||
@Override
|
||||
public void handleMessage(Message msg) {
|
||||
|
||||
Reference in New Issue
Block a user