Remove silly nullable reference

This commit is contained in:
Eric Stokes 2011-09-25 10:41:43 -06:00
parent 66538ccd02
commit e5646bbbfd

View File

@ -45,7 +45,7 @@ public class PurgeWorlds {
* @param sender * @param sender
* @param world * @param world
*/ */
public void purgeWorld(@org.jetbrains.annotations.Nullable CommandSender sender, MVWorld world) { public void purgeWorld(CommandSender sender, MVWorld world) {
if (world == null) { if (world == null) {
return; return;
} }