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

Commit 34f1ca7b authored by Dave Bort's avatar Dave Bort
Browse files

util/DebugUtils: Remove references to android.util.Config

The semantics of Config.DEBUG will be changing soon, and all other
Config.* fields will become deprecated/hidden.

BUG=1780938
parent 76c02260
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -43,8 +43,8 @@ public class DebugUtils {
     *
     *
     * <p>This class is useful for debugging and logging purpose:</p>
     * <p>This class is useful for debugging and logging purpose:</p>
     * <pre>
     * <pre>
     * if (Config.DEBUG) {
     * if (DEBUG) {
     *   if (DebugUtils.isObjectSelected(childView) && Config.LOGV) {
     *   if (DebugUtils.isObjectSelected(childView) && LOGV_ENABLED) {
     *     Log.v(TAG, "Object " + childView + " logged!");
     *     Log.v(TAG, "Object " + childView + " logged!");
     *   }
     *   }
     * }
     * }