You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2011/06/05 17:11:35 UTC

svn commit: r1132433 - /tomcat/trunk/java/org/apache/tomcat/util/scan/Jar.java

Author: rjung
Date: Sun Jun  5 15:11:34 2011
New Revision: 1132433

URL: http://svn.apache.org/viewvc?rev=1132433&view=rev
Log:
Fix Javadoc.

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/scan/Jar.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/scan/Jar.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/scan/Jar.java?rev=1132433&r1=1132432&r2=1132433&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/scan/Jar.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/scan/Jar.java Sun Jun  5 15:11:34 2011
@@ -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 {
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org