Moved Nullable to utils package

This commit is contained in:
Anuken
2020-10-02 23:11:26 -04:00
parent ae2a4ea2d6
commit 35af71c613
87 changed files with 66 additions and 115 deletions

View File

@@ -2,7 +2,7 @@ package mindustry.content;
import arc.*;
import arc.struct.*;
import arc.util.ArcAnnotate.*;
import arc.util.*;
import mindustry.ctype.*;
import mindustry.game.Objectives.*;
import mindustry.type.*;
@@ -571,7 +571,8 @@ public class TechTree implements ContentList{
return node(block, () -> {});
}
public static @Nullable TechNode get(UnlockableContent content){
public static @Nullable
TechNode get(UnlockableContent content){
return map.get(content);
}