GUAC-587: Fix formatting of comments/javadoc in DirectoryClassLoader.

This commit is contained in:
Michael Jumper
2015-05-14 03:33:10 +00:00
parent d066d58ee1
commit cc6002f1a1

View File

@@ -84,7 +84,7 @@ public class DirectoryClassLoader extends URLClassLoader {
* Returns all .jar files within the given directory as an array of URLs. * Returns all .jar files within the given directory as an array of URLs.
* *
* @param dir * @param dir
* The directory to retrieve all .jar files from * The directory to retrieve all .jar files from.
* *
* @return * @return
* An array of the URLs of all .jar files within the given directory. * An array of the URLs of all .jar files within the given directory.
@@ -129,9 +129,7 @@ public class DirectoryClassLoader extends URLClassLoader {
} }
// Set delegate classloader to new URLClassLoader which loads from the // Set delegate classloader to new URLClassLoader which loads from the .jars found above.
// .jars found above.
URL[] urls = new URL[jarURLs.size()]; URL[] urls = new URL[jarURLs.size()];
return jarURLs.toArray(urls); return jarURLs.toArray(urls);