1 /*
2  * Copyright (C) 2006 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.util;
18 
19 /**
20  * @deprecated This class is not useful, it just returns the same value for
21  * all constants, and has always done this.  Do not use it.
22  */
23 @Deprecated
24 public final class Config {
Config()25     /** @hide */ public Config() {}
26 
27     /**
28      * @deprecated Always false.
29      */
30     @Deprecated
31     public static final boolean DEBUG = false;
32 
33     /**
34      * @deprecated Always true.
35      */
36     @Deprecated
37     public static final boolean RELEASE = true;
38 
39     /**
40      * @deprecated Always false.
41      */
42     @Deprecated
43     public static final boolean PROFILE = false;
44 
45     /**
46      * @deprecated Always false.
47      */
48     @Deprecated
49     public static final boolean LOGV = false;
50 
51     /**
52      * @deprecated Always true.
53      */
54     @Deprecated
55     public static final boolean LOGD = true;
56 }
57