diff options
author | Elliott Hughes <enh@google.com> | 2013-09-03 13:32:52 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-09-03 13:50:56 -0700 |
commit | 413d4592ee114eac81014af4b6347e73873ce8ce (patch) | |
tree | bb6e123928f7c9f9e197de8ededea8fdd2cd5493 /libart | |
parent | a96049c03db95fd46583ac917f221791cf7d08dc (diff) | |
download | libcore-413d4592ee114eac81014af4b6347e73873ce8ce.zip libcore-413d4592ee114eac81014af4b6347e73873ce8ce.tar.gz libcore-413d4592ee114eac81014af4b6347e73873ce8ce.tar.bz2 |
Use the docs-approved Android x.y (Name) format consistently.
Also include the API level where the reason for mentioning the version
is an API difference (as opposed to simply a behavioral difference).
Change-Id: Idd69630fc5d6f6f0bd5d1c524cb32fd8c2fb750d
Diffstat (limited to 'libart')
-rw-r--r-- | libart/src/main/java/dalvik/system/VMRuntime.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libart/src/main/java/dalvik/system/VMRuntime.java b/libart/src/main/java/dalvik/system/VMRuntime.java index d322c16..19e18da 100644 --- a/libart/src/main/java/dalvik/system/VMRuntime.java +++ b/libart/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() { |