diff options
| author | Joe Onorato <joeo@google.com> | 2011-04-06 19:22:23 -0700 |
|---|---|---|
| committer | Joe Onorato <joeo@google.com> | 2011-04-07 19:23:05 -0700 |
| commit | 43a17654cf4bfe7f1ec22bd8b7b32daccdf27c09 (patch) | |
| tree | a5aac88ebb367a0f046a5724edc8e35cbe192cb9 /core/java/android/view/ViewDebug.java | |
| parent | ea4af8914a3b6ea68558f20ce502966032ca1ab1 (diff) | |
Remove the deprecated things from Config.java. These haven't been working since before 1.0.
Change-Id: Ic2e8fa68797ea9d486f4117f3d82c98233cdab1e
Diffstat (limited to 'core/java/android/view/ViewDebug.java')
| -rw-r--r-- | core/java/android/view/ViewDebug.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/java/android/view/ViewDebug.java b/core/java/android/view/ViewDebug.java index 89736d643cf3..881cb7682b92 100644 --- a/core/java/android/view/ViewDebug.java +++ b/core/java/android/view/ViewDebug.java @@ -16,7 +16,6 @@ package android.view; -import android.util.Config; import android.util.Log; import android.util.DisplayMetrics; import android.content.res.Resources; @@ -158,7 +157,7 @@ public class ViewDebug { /** * <p>Enables or disables views consistency check. Even when this property is enabled, - * view consistency checks happen only if {@link android.util.Config#DEBUG} is set + * view consistency checks happen only if {@link false} is set * to true. The value of this property can be configured externally in one of the * following files:</p> * <ul> @@ -172,7 +171,7 @@ public class ViewDebug { public static boolean consistencyCheckEnabled = false; static { - if (Config.DEBUG) { + if (false) { Debug.setFieldsOn(ViewDebug.class, true); } } |
