diff options
| author | 2023-10-02 14:22:44 +0000 | |
|---|---|---|
| committer | 2023-10-02 14:22:44 +0000 | |
| commit | 86a91b1990698019eca8c79017b29b65e3f3850b (patch) | |
| tree | a312a57e3c4c8b6616179d41f25eb70d49954770 | |
| parent | 7831be929b069663a12975258f694a16d0d09aae (diff) | |
| parent | d28861e229e100e79bf4e88d2e0d88393125f865 (diff) | |
Merge "Make DEBUG not static" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileImpl.java b/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileImpl.java index 70df09d0876b..69fe46aa9009 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileImpl.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tileimpl/QSTileImpl.java @@ -83,7 +83,7 @@ import java.util.ArrayList; */ public abstract class QSTileImpl<TState extends State> implements QSTile, LifecycleOwner, Dumpable { protected final String TAG = "Tile." + getClass().getSimpleName(); - protected static final boolean DEBUG = Log.isLoggable("Tile", Log.DEBUG); + protected final boolean DEBUG = Log.isLoggable("Tile", Log.DEBUG); private static final long DEFAULT_STALE_TIMEOUT = 10 * DateUtils.MINUTE_IN_MILLIS; protected static final Object ARG_SHOW_TRANSIENT_ENABLING = new Object(); |