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

Commit 83524876 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Whoops, not yet time to be an error.

Change-Id: I869026e1ad33b891010d556150f0b83fa97c4ac4
parent 03901667
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1448,7 +1448,7 @@ class ContextImpl extends Context {
                if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KEY_LIME_PIE) {
                    IllegalArgumentException ex = new IllegalArgumentException(
                            "Service Intent must be explicit: " + service);
                    Log.wtf(TAG, "This will become an error", ex);
                    Log.e(TAG, "This will become an error", ex);
                    //throw ex;
                }
            }
@@ -1480,7 +1480,7 @@ class ContextImpl extends Context {
                if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KEY_LIME_PIE) {
                    IllegalArgumentException ex = new IllegalArgumentException(
                            "Service Intent must be explicit: " + service);
                    Log.wtf(TAG, "This will become an error", ex);
                    Log.e(TAG, "This will become an error", ex);
                    //throw ex;
                }
            }
@@ -1523,7 +1523,7 @@ class ContextImpl extends Context {
            if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.KEY_LIME_PIE) {
                IllegalArgumentException ex = new IllegalArgumentException(
                        "Service Intent must be explicit: " + service);
                Log.wtf(TAG, "This will become an error", ex);
                Log.e(TAG, "This will become an error", ex);
                //throw ex;
            }
        }