Fix code to filter current directory from paths pass to Reflection library.

This commit is contained in:
Alec Wysoker 2014-12-01 17:45:46 -05:00
parent 2fa8fe2415
commit 62e5d42380
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class PluginManager<PluginType> {
URL cwd;
try {
cwd = new File(".").getAbsoluteFile().toURI().toURL();
cwd = new File("").getAbsoluteFile().toURI().toURL();
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}