OSDN Git Service

Removing APIs from dalvik.system that shouldn't have been published.
authorJesse Wilson <jessewilson@google.com>
Thu, 1 Apr 2010 22:44:05 +0000 (15:44 -0700)
committerJesse Wilson <jessewilson@google.com>
Thu, 1 Apr 2010 22:44:05 +0000 (15:44 -0700)
These APIs were deprecated in Eclair and should disappear in Gingerbread.
See bug 2553600.

libcore/dalvik/src/main/java/dalvik/system/AllocationLimitError.java
libcore/dalvik/src/main/java/dalvik/system/PotentialDeadlockError.java
libcore/dalvik/src/main/java/dalvik/system/StaleDexCacheError.java
libcore/dalvik/src/main/java/dalvik/system/TemporaryDirectory.java
libcore/dalvik/src/main/java/dalvik/system/TouchDex.java
libcore/dalvik/src/main/java/dalvik/system/VMDebug.java
libcore/dalvik/src/main/java/dalvik/system/VMRuntime.java
libcore/dalvik/src/main/java/dalvik/system/VMStack.java
libcore/dalvik/src/main/java/dalvik/system/Zygote.java

index 9118199..e1417e2 100644 (file)
@@ -19,8 +19,7 @@ package dalvik.system;
 /**
  * Is thrown when an allocation limit is exceeded.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public class AllocationLimitError extends VirtualMachineError {
     /**
index 938a5cd..70f5fc0 100644 (file)
@@ -19,8 +19,7 @@ package dalvik.system;
 /**
  * Is thrown when the VM identifies a potential deadlock.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public class PotentialDeadlockError extends VirtualMachineError {
     /**
index ffde7cb..22f8668 100644 (file)
@@ -20,8 +20,7 @@ package dalvik.system;
  * Is thrown when the VM determines that a DEX file's cache is out of date, and
  * that there is no way to recreate it.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public class StaleDexCacheError extends VirtualMachineError {
     /**
index 0e26a70..e05292e 100644 (file)
@@ -26,8 +26,7 @@ import java.util.logging.Logger;
  * startup, as a reasonably easy way to get the standard property
  * <code>java.io.tmpdir</code> to point at something useful.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public class TemporaryDirectory {
     /** system property name for the temporary directory */
index 04c6546..aca0fd3 100644 (file)
@@ -25,8 +25,7 @@ import java.io.FilenameFilter;
 /**
  * Induces optimization/verification of a set of DEX files.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public class TouchDex {
 
index 31e82ec..118d4a6 100644 (file)
@@ -28,8 +28,7 @@ import java.io.IOException;
  * 
  * @cts Please complete the spec.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public final class VMDebug {
     /**
index 6fa8d15..0d0747b 100644 (file)
@@ -21,8 +21,7 @@ package dalvik.system;
  * An application cannot create its own Runtime instance, and must obtain
  * one from the getRuntime method.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public final class VMRuntime {
 
index b049962..e9d5765 100644 (file)
@@ -20,8 +20,7 @@ package dalvik.system;
  * Provides a limited interface to the Dalvik VM stack. This class is mostly
  * used for implementing security checks.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public final class VMStack {
     /**
index 641e856..21eee3d 100644 (file)
@@ -21,8 +21,7 @@ package dalvik.system;
  * be partially initialized and then fork()'d from the partially initialized
  * state.
  *
- * @deprecated this is an internal Dalvik class that is not appropriate for
- *      general use. It will be removed from the public API in a future release.
+ * @hide
  */
 public class Zygote {
     /*