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
This commit is contained in:
Dave Bort
2009-04-13 17:18:45 -07:00
parent 76c0226008
commit 34f1ca7b79

View File

@@ -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!");
* }
* }