mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-09 04:02:10 +01:00
Cleanup
This commit is contained in:
parent
c1d56d5ee5
commit
46002b95e3
@ -48,11 +48,11 @@ public class ModuleManager implements Module {
|
|||||||
@Override
|
@Override
|
||||||
public boolean load() {
|
public boolean load() {
|
||||||
File dir = new File(plugin.getDataFolder() + File.separator + "modules");
|
File dir = new File(plugin.getDataFolder() + File.separator + "modules");
|
||||||
String[] files = dir.list();
|
File[] files = dir.listFiles();
|
||||||
if (files == null || files.length == 0){
|
if (files == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
for (File pathToJar : dir.listFiles()) { // FindBugs: "possible null pointers" O_o ?
|
for (File pathToJar : files) {
|
||||||
JarFile jarFile = null;
|
JarFile jarFile = null;
|
||||||
try {
|
try {
|
||||||
jarFile = new JarFile(pathToJar);
|
jarFile = new JarFile(pathToJar);
|
||||||
|
Loading…
Reference in New Issue
Block a user