diff options
Diffstat (limited to 'libdvm/src/main/java/dalvik/system/VMRuntime.java')
-rw-r--r-- | libdvm/src/main/java/dalvik/system/VMRuntime.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libdvm/src/main/java/dalvik/system/VMRuntime.java b/libdvm/src/main/java/dalvik/system/VMRuntime.java index 8ee607c..cd4a9db 100644 --- a/libdvm/src/main/java/dalvik/system/VMRuntime.java +++ b/libdvm/src/main/java/dalvik/system/VMRuntime.java @@ -122,7 +122,7 @@ public final class VMRuntime { /** * This method exists for binary compatibility. It was part of a - * heap sizing API which was removed in Honeycomb. + * heap sizing API which was removed in Android 3.0 (Honeycomb). */ @Deprecated public long getMinimumHeapSize() { @@ -131,7 +131,7 @@ public final class VMRuntime { /** * This method exists for binary compatibility. It was part of a - * heap sizing API which was removed in Honeycomb. + * heap sizing API which was removed in Android 3.0 (Honeycomb). */ @Deprecated public long setMinimumHeapSize(long size) { @@ -164,7 +164,7 @@ public final class VMRuntime { /** * This method exists for binary compatibility. It was part of - * the external allocation API which was removed in Honeycomb. + * the external allocation API which was removed in Android 3.0 (Honeycomb). */ @Deprecated public boolean trackExternalAllocation(long size) { @@ -173,14 +173,14 @@ public final class VMRuntime { /** * This method exists for binary compatibility. It was part of - * the external allocation API which was removed in Honeycomb. + * the external allocation API which was removed in Android 3.0 (Honeycomb). */ @Deprecated public void trackExternalFree(long size) {} /** * This method exists for binary compatibility. It was part of - * the external allocation API which was removed in Honeycomb. + * the external allocation API which was removed in Android 3.0 (Honeycomb). */ @Deprecated public long getExternalBytesAllocated() { |