This is 3.0.1

This commit is contained in:
Magnus Ulf 2018-12-30 23:42:20 +01:00
parent b25471eeaf
commit fdb26254b1
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<parent> <parent>
<groupId>com.massivecraft.massivesuper</groupId> <groupId>com.massivecraft.massivesuper</groupId>
<artifactId>MassiveSuper</artifactId> <artifactId>MassiveSuper</artifactId>
<version>3.0.0</version> <version>3.0.1</version>
<relativePath>../MassiveSuper</relativePath> <relativePath>../MassiveSuper</relativePath>
</parent> </parent>

View File

@ -21,7 +21,7 @@ public class MassiveCoreTaskDeleteFiles implements Runnable
// Some people got null pointers // Some people got null pointers
if (MassiveCoreMConf.get() == null) throw new NullPointerException("mconf"); if (MassiveCoreMConf.get() == null) throw new NullPointerException("mconf");
if (MassiveCoreMConf.get().deleteFiles == null) throw new NullPointerException("deleteFiles"); if (MassiveCoreMConf.get().deleteFiles == null) throw new NullPointerException("deleteFiles");
for (String deleteFile : MassiveCoreMConf.get().deleteFiles) for (String deleteFile : MassiveCoreMConf.get().deleteFiles)
{ {
File file = new File(deleteFile); File file = new File(deleteFile);