summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Dave Bort <dbort@android.com> 2009-04-13 17:18:45 -0700
committer Dave Bort <dbort@android.com> 2009-04-13 17:18:45 -0700
commit34f1ca7b79ff678a651aea4b82e032b798506b37 (patch)
treea2aa75d337f40c893911dbc11b008750442c469d
parent76c0226008ee16633dc94ed4dbeadef2174f6bd9 (diff)
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
-rw-r--r--core/java/android/util/DebugUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/util/DebugUtils.java b/core/java/android/util/DebugUtils.java
index 1c5d669ad52a..56f389c9faa9 100644
--- a/core/java/android/util/DebugUtils.java
+++ b/core/java/android/util/DebugUtils.java
@@ -43,8 +43,8 @@ public class DebugUtils {
*
* <p>This class is useful for debugging and logging purpose:</p>
* <pre>
- * if (Config.DEBUG) {
- * if (DebugUtils.isObjectSelected(childView) && Config.LOGV) {
+ * if (DEBUG) {
+ * if (DebugUtils.isObjectSelected(childView) && LOGV_ENABLED) {
* Log.v(TAG, "Object " + childView + " logged!");
* }
* }