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

Commit ce656462 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Take the "tf" out of "wtf"."

parents 469892b9 012d5e05
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -828,7 +828,7 @@ final class SystemServiceRegistry {
                        service = createService(ctx);
                        cache[mCacheIndex] = service;
                    } catch (ServiceNotFoundException e) {
                        Log.wtf(TAG, e.getMessage(), e);
                        Log.w(TAG, e.getMessage(), e);
                    }
                }
                return (T)service;
@@ -852,7 +852,7 @@ final class SystemServiceRegistry {
                    try {
                        mCachedInstance = createService();
                    } catch (ServiceNotFoundException e) {
                        Log.wtf(TAG, e.getMessage(), e);
                        Log.w(TAG, e.getMessage(), e);
                    }
                }
                return mCachedInstance;
@@ -885,7 +885,7 @@ final class SystemServiceRegistry {
                    try {
                        mCachedInstance = createService(appContext != null ? appContext : ctx);
                    } catch (ServiceNotFoundException e) {
                        Log.wtf(TAG, e.getMessage(), e);
                        Log.w(TAG, e.getMessage(), e);
                    }
                }
                return mCachedInstance;