From d4b6bebb627fe44dea5295f8d6072e7b7a93b179 Mon Sep 17 00:00:00 2001 From: rjung Date: Sun, 5 Jun 2011 15:11:34 +0000 Subject: [PATCH] Fix Javadoc. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1132433 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/tomcat/util/scan/Jar.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java/org/apache/tomcat/util/scan/Jar.java b/java/org/apache/tomcat/util/scan/Jar.java index 293ffbbd0..ffd841a8b 100644 --- a/java/org/apache/tomcat/util/scan/Jar.java +++ b/java/org/apache/tomcat/util/scan/Jar.java @@ -21,12 +21,12 @@ import java.io.InputStream; /** * Provides an abstraction for use by the various classes that need to scan - * JARs. The classes provided by the JRE for accessing JARs ({@link JarFile} and - * {@link JarInputStream}) have significantly different performance + * JARs. The classes provided by the JRE for accessing JARs ({@link java.util.jar.JarFile} and + * {@link java.util.jar.JarInputStream}) have significantly different performance * characteristics depending on the form of the URL used to access the JAR. - * For file based JAR {@link URL}s, {@link JarFile} is faster but for non-file - * based {@link URL}s, {@link JarFile} creates a copy of the JAR in the - * temporary directory so {@link JarInputStream} is faster. + * For file based JAR {@link java.net.URL}s, {@link java.util.jar.JarFile} is faster but for non-file + * based {@link java.net.URL}s, {@link java.util.jar.JarFile} creates a copy of the JAR in the + * temporary directory so {@link java.util.jar.JarInputStream} is faster. */ public interface Jar { -- 2.11.0