diff options
| author | Jesse Wilson <jessewilson@google.com> | 2011-02-24 10:44:33 -0800 |
|---|---|---|
| committer | Jesse Wilson <jessewilson@google.com> | 2011-02-24 10:46:22 -0800 |
| commit | a0f8bc51aff98c2e23e73069e447f63397471a0a (patch) | |
| tree | 4a4b5ae01d3320818cf41a95e2939fd9f8b7e54f /core/java/android/util/DebugUtils.java | |
| parent | 7b76c8d3fc25aedea6edfed9638b008faa2f6ae8 (diff) | |
Remove default constructors from static utility classes.
Change-Id: Id8dc55a30a03e1da87500b66c429de9268033b9e
http://b/3344646
Diffstat (limited to 'core/java/android/util/DebugUtils.java')
| -rw-r--r-- | core/java/android/util/DebugUtils.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/util/DebugUtils.java b/core/java/android/util/DebugUtils.java index 65fc35c8947e..7e3c85546e72 100644 --- a/core/java/android/util/DebugUtils.java +++ b/core/java/android/util/DebugUtils.java @@ -20,9 +20,11 @@ import java.lang.reflect.Method; import java.lang.reflect.InvocationTargetException; /** - * <p>Various utilities for debugging and logging.</p> + * <p>Various utilities for debugging and logging.</p> */ public class DebugUtils { + /** @hide */ public DebugUtils() {} + /** * <p>Filters objects against the <code>ANDROID_OBJECT_FILTER</code> * environment variable. This environment variable can filter objects |
