Fixed NPE
This commit is contained in:
parent
54bd7ba4ac
commit
3ee9f7be1b
@ -446,7 +446,8 @@ public final class ModuleLoader implements CoreModule
|
|||||||
modules.remove(m);
|
modules.remove(m);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
loaders.remove(m).close();
|
if (loaders.containsKey(m))
|
||||||
|
loaders.remove(m).close();
|
||||||
}
|
}
|
||||||
catch (IOException e)
|
catch (IOException e)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user