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

Commit 43a17654 authored by Joe Onorato's avatar Joe Onorato
Browse files

Remove the deprecated things from Config.java. These haven't been working since before 1.0.

Change-Id: Ic2e8fa68797ea9d486f4117f3d82c98233cdab1e
parent ea4af891
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -47,18 +47,6 @@ LOCAL_SRC_FILES := $(filter-out \
			org/mobilecontrol/% \
			,$(LOCAL_SRC_FILES))

# Include a different set of source files when building a debug build.
# TODO: Maybe build these into a separate .jar and put it on the classpath
#       in front of framework.jar.
# NOTE: Do not use this as an example; this is a very special situation.
#       Do not modify LOCAL_SRC_FILES based on any variable other
#       than TARGET_BUILD_TYPE, otherwise builds can become inconsistent.
ifeq ($(TARGET_BUILD_TYPE),debug)
  LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug)
else
  LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug)
endif

## READ ME: ########################################################
##
## When updating this list of aidl files, consider if that aidl is
@@ -309,11 +297,6 @@ fwbase_dirs_to_document := \
	   ) \
	 )

# Pass a special "fake-out" version of some classes to the doc/API tools.
# ConfigBuildFlags uses this trick to prevent certain fields from appearing
# as "final" in the official SDK APIs.
fwbase_dirs_to_document += core/config/sdk

# include definition of libcore_to_document
include $(LOCAL_PATH)/../../libcore/Docs.mk

api/13.xml

0 → 100644
+461994 −0

File added.

Preview size limit exceeded, changes collapsed.

+0 −62
Original line number Diff line number Diff line
@@ -206095,68 +206095,6 @@
</parameter>
</constructor>
</class>
<class name="Config"
 extends="java.lang.Object"
 abstract="false"
 static="false"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
<field name="DEBUG"
 type="boolean"
 transient="false"
 volatile="false"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="LOGD"
 type="boolean"
 transient="false"
 volatile="false"
 value="true"
 static="true"
 final="true"
 deprecated="deprecated"
 visibility="public"
>
</field>
<field name="LOGV"
 type="boolean"
 transient="false"
 volatile="false"
 value="false"
 static="true"
 final="true"
 deprecated="deprecated"
 visibility="public"
>
</field>
<field name="PROFILE"
 type="boolean"
 transient="false"
 volatile="false"
 value="false"
 static="true"
 final="true"
 deprecated="deprecated"
 visibility="public"
>
</field>
<field name="RELEASE"
 type="boolean"
 transient="false"
 volatile="false"
 static="true"
 final="true"
 deprecated="deprecated"
 visibility="public"
>
</field>
</class>
<class name="DebugUtils"
 extends="java.lang.Object"
 abstract="false"

core/config/README.txt

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
One of the subdirectories {debug, ndebug} is included in framework.jar
by ../../Android.mk depending on the value of $(TARGET_BUILD_TYPE).

The sdk/ directory contains the files that are passed to the doc/API
tools regardless of $(TARGET_BUILD_TYPE).
+0 −24
Original line number Diff line number Diff line
/*
 * Copyright (C) 2009 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;

/**
 * Static flags set by the build process.
 */
/* package */ final class ConfigBuildFlags {
    /* package */ static final boolean DEBUG = true;
}
Loading