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

Commit ce6182fa authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 20788

* changes:
  make private inner classes static
parents 1d144983 7ec19876
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ class CallbackProxy extends Handler {

    // Result transportation object for returning results across thread
    // boundaries.
    private class ResultTransport<E> {
    private static class ResultTransport<E> {
        // Private result object
        private E mResult;

+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ public final class WebIconDatabase {
    private final EventHandler mEventHandler = new EventHandler();

    // Class to handle messages before WebCore is ready
    private class EventHandler extends Handler {
    private static class EventHandler extends Handler {
        // Message ids
        static final int OPEN         = 0;
        static final int CLOSE        = 1;
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ public final class WebStorage {

    private Handler mHandler = null;

    private class Origin {
    private static class Origin {
        String mOrigin = null;
        long mQuota = 0;