Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 822036d0 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Fix issue # 5017868: Twitter crashes on start:"

parents 395765a9 78f80b4e
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -20494,6 +20494,14 @@ package android.util {
    ctor public Base64OutputStream(java.io.OutputStream, int);
  }
  public final deprecated class Config {
    field public static final deprecated boolean DEBUG = false;
    field public static final deprecated boolean LOGD = true;
    field public static final deprecated boolean LOGV = false;
    field public static final deprecated boolean PROFILE = false;
    field public static final deprecated boolean RELEASE = true;
  }
  public class DebugUtils {
    method public static boolean isObjectSelected(java.lang.Object);
  }
+56 −0
Original line number Diff line number Diff line
/*
 * 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;

/**
 * @deprecated This class is not useful, it just returns the same value for
 * all constants, and has always done this.  Do not use it.
 */
@Deprecated
public final class Config {
    /** @hide */ public Config() {}

    /**
     * @deprecated Always false.
     */
    @Deprecated
    public static final boolean DEBUG = false;

    /**
     * @deprecated Always true.
     */
    @Deprecated
    public static final boolean RELEASE = true;

    /**
     * @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;
}