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

Commit d28861e2 authored by Fabián Kozynski's avatar Fabián Kozynski
Browse files

Make DEBUG not static

This fixes issues with Robolectric tests

Test: atest SystemUiRoboTests
Fixes: 298648655
Change-Id: Ia2ab939676cd6978649a3102ca2a0047b39ca0f1
parent d346a1f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();