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

Commit a8b3f7b6 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Whoops, not yet time to be an error."

parents 26502916 83524876
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;
            }
        }