aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlmaz Mingaleev <mingaleev@google.com>2024-04-10 11:19:29 +0100
committerAlmaz Mingaleev <mingaleev@google.com>2024-04-10 11:22:39 +0100
commitedf900cc4c0c629e5e2ff7cf157e9e000e212fd1 (patch)
tree18dc144d6d99ae3192c4e18f8e594e3906dce0ef
parent7635e2ae5ca102b0db3b9d853d97660eff698a9e (diff)
downloadlibcore-edf900cc4c0c629e5e2ff7cf157e9e000e212fd1.tar.gz
Remove multi-release part of JarEntry javadoc.
Multi-release JARs are not supported by Android. Bug: 260718199 Test: n/a Change-Id: I821f8456de5ef15ed8e0e99b005f4965f844d7d8
-rw-r--r--ojluni/src/main/java/java/util/jar/JarEntry.java12
1 files changed, 1 insertions, 11 deletions
diff --git a/ojluni/src/main/java/java/util/jar/JarEntry.java b/ojluni/src/main/java/java/util/jar/JarEntry.java
index a4838426ae0..8402f29a088 100644
--- a/ojluni/src/main/java/java/util/jar/JarEntry.java
+++ b/ojluni/src/main/java/java/util/jar/JarEntry.java
@@ -130,17 +130,7 @@ class JarEntry extends ZipEntry {
}
/**
- * Returns the real name of this {@code JarEntry}.
- *
- * If this {@code JarEntry} is an entry of a
- * <a href="JarFile.html#multirelease">multi-release jar file</a> and the
- * {@code JarFile} is configured to be processed as such, the name returned
- * by this method is the path name of the versioned entry that the
- * {@code JarEntry} represents, rather than the path name of the base entry
- * that {@link #getName()} returns. If the {@code JarEntry} does not represent
- * a versioned entry of a multi-release {@code JarFile} or the {@code JarFile}
- * is not configured for processing a multi-release jar file, this method
- * returns the same name that {@link #getName()} returns.
+ * This method returns the same name that {@link #getName()} returns.
*
* @return the real name of the JarEntry
*