Fix code to filter current directory from paths pass to Reflection library.
This commit is contained in:
parent
2fa8fe2415
commit
62e5d42380
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue