Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0867e691 authored by Cary Clark's avatar Cary Clark
Browse files

make final constants static

found by findbugs
http://b/issue?id=1857033
parent 7d891333
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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) {