summaryrefslogtreecommitdiffstats
path: root/dalvik/src/main
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2011-01-18 22:11:34 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-18 22:11:34 -0800
commitc6fbb241341729f9bfdede1ece73a37daf9cbb77 (patch)
tree39a9ede8a204feaac6285bc09e12e9f4c5cabc98 /dalvik/src/main
parent353a72360d08f34cd38a705118f148ccf7d85340 (diff)
parent0d46536ec1069aa2a7181deaf839cc1ba26d45d7 (diff)
downloadlibcore-c6fbb241341729f9bfdede1ece73a37daf9cbb77.zip
libcore-c6fbb241341729f9bfdede1ece73a37daf9cbb77.tar.gz
libcore-c6fbb241341729f9bfdede1ece73a37daf9cbb77.tar.bz2
am 0d46536e: am cbd2876d: am be9c142f: Minor doc tweaks.
* commit '0d46536ec1069aa2a7181deaf839cc1ba26d45d7': Minor doc tweaks.
Diffstat (limited to 'dalvik/src/main')
-rw-r--r--dalvik/src/main/java/dalvik/system/DexFile.java13
1 files changed, 4 insertions, 9 deletions
diff --git a/dalvik/src/main/java/dalvik/system/DexFile.java b/dalvik/src/main/java/dalvik/system/DexFile.java
index c87f0a8..4156f12 100644
--- a/dalvik/src/main/java/dalvik/system/DexFile.java
+++ b/dalvik/src/main/java/dalvik/system/DexFile.java
@@ -157,14 +157,12 @@ public final class DexFile {
/**
* Closes the DEX file.
* <p>
- * This may not be able to release any resources. If classes have been
- * loaded, the underlying storage can't be discarded.
+ * This may not be able to release any resources. If classes from this
+ * DEX file are still resident, the DEX file can't be unmapped.
*
* @throws IOException
* if an I/O error occurs during closing the file, which
* normally should not happen
- *
- * @cts Second sentence is a bit cryptic.
*/
public void close() throws IOException {
guard.close();
@@ -180,9 +178,8 @@ public final class DexFile {
* going to do what you want. Use {@link Class#forName(String)} instead.
* <p>
* The method does not throw {@link ClassNotFoundException} if the class
- * isn't found because it isn't feasible to throw exceptions wildly every
- * time a class is not found in the first DEX file we look at. It will
- * throw exceptions for other failures, though.
+ * isn't found because it isn't reasonable to throw exceptions wildly every
+ * time a class is not found in the first DEX file we look at.
*
* @param name
* the class name, which should look like "java/lang/String"
@@ -193,8 +190,6 @@ public final class DexFile {
*
* @return the {@link Class} object representing the class, or {@code null}
* if the class cannot be loaded
- *
- * @cts Exception comment is a bit cryptic. What exception will be thrown?
*/
public Class loadClass(String name, ClassLoader loader) {
String slashName = name.replace('.', '/');