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.
*
* @param dir
* The directory to retrieve all .jar files from
* The directory to retrieve all .jar files from.
*
* @return
* 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
// .jars found above.
// Set delegate classloader to new URLClassLoader which loads from the .jars found above.
URL[] urls = new URL[jarURLs.size()];
return jarURLs.toArray(urls);