Author: ehillenius
Date: Sun Sep  9 02:24:36 2007
New Revision: 573971

URL: http://svn.apache.org/viewvc?rev=573971&view=rev
Log:
javadoc fix

Modified:
    
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/PackageResourceGuard.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/PackageResourceGuard.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/PackageResourceGuard.java?rev=573971&r1=573970&r2=573971&view=diff
==============================================================================
--- 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/PackageResourceGuard.java
 (original)
+++ 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/PackageResourceGuard.java
 Sun Sep  9 02:24:36 2007
@@ -23,8 +23,8 @@
 
 
 /**
- * Default implementation of [EMAIL PROTECTED] IPackageResourceGuard}. By 
default, the
- * extensions 'properties', 'html', 'class' and 'java' are blocked.
+ * Default implementation of [EMAIL PROTECTED] IPackageResourceGuard}. By 
default, the extensions
+ * 'properties', 'class' and 'java' are blocked.
  * 
  * @author eelcohillenius
  */
@@ -57,8 +57,8 @@
         * Whether the provided absolute path is accepted.
         * 
         * @param path
-        *            The absolute path, starting from the class root (packages 
are
-        *            seperated with forward slashes instead of dots).
+        *            The absolute path, starting from the class root (packages 
are seperated with
+        *            forward slashes instead of dots).
         * @return True if accepted, false otherwise.
         */
        protected boolean acceptAbsolutePath(String path)
@@ -74,7 +74,8 @@
                {
                        ext = path.substring(ixExtension + 1).toLowerCase();
                }
-               if ("html".equals(ext) && 
getClass().getClassLoader().getResource(path.replaceAll(".html", ".class")) != 
null)
+               if ("html".equals(ext) &&
+                               
getClass().getClassLoader().getResource(path.replaceAll(".html", ".class")) != 
null)
                {
                        return false;
                }
@@ -85,8 +86,8 @@
         * Whether the provided extension is accepted.
         * 
         * @param extension
-        *            The extension, starting from the class root (packages are
-        *            seperated with forward slashes instead of dots).
+        *            The extension, starting from the class root (packages are 
seperated with forward
+        *            slashes instead of dots).
         * @return True if accepted, false otherwise.
         */
        protected boolean acceptExtension(String extension)


Reply via email to