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/util | |
parent | ea4af8914a3b6ea68558f20ce502966032ca1ab1 (diff) | |
download | frameworks_base-43a17654cf4bfe7f1ec22bd8b7b32daccdf27c09.zip frameworks_base-43a17654cf4bfe7f1ec22bd8b7b32daccdf27c09.tar.gz frameworks_base-43a17654cf4bfe7f1ec22bd8b7b32daccdf27c09.tar.bz2 |
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/util')
-rw-r--r-- | core/java/android/util/Config.java | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/core/java/android/util/Config.java b/core/java/android/util/Config.java deleted file mode 100644 index becb882..0000000 --- a/core/java/android/util/Config.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (C) 2006 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package android.util; - -/** - * Build configuration. The constants in this class vary depending - * on release vs. debug build. - * {@more} - */ -public final class Config { - /** @hide */ public Config() {} - - /** - * If this is a debug build, this field will be true. - */ - public static final boolean DEBUG = ConfigBuildFlags.DEBUG; - - /* - * Deprecated fields - * TODO: Remove platform references to these and @hide them. - */ - - /** - * @deprecated Use {@link #DEBUG} instead. - */ - @Deprecated - public static final boolean RELEASE = !DEBUG; - - /** - * @deprecated Always false. - */ - @Deprecated - public static final boolean PROFILE = false; - - /** - * @deprecated Always false. - */ - @Deprecated - public static final boolean LOGV = false; - - /** - * @deprecated Always true. - */ - @Deprecated - public static final boolean LOGD = true; -} |