forked from SteamWar/SteamWar
Cleanup stuff
This commit is contained in:
@@ -105,6 +105,11 @@ public interface Region extends RegionDataStore {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean inRegion(int x, int z, boolean extension) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Clipboard copy(boolean extension) {
|
||||
return null;
|
||||
|
||||
@@ -80,7 +80,7 @@ public interface RegionSystem {
|
||||
* Only contains Regions of the same Type as the one you inputted.
|
||||
*/
|
||||
@NonNull
|
||||
Stream<Region> getConnectedRegions(Region region);
|
||||
Stream<Region> getConnectedRegions(@NonNull Region region);
|
||||
|
||||
private static RegionSystem init() {
|
||||
if (Core.getVersion() >= 21) {
|
||||
@@ -130,7 +130,7 @@ public interface RegionSystem {
|
||||
}
|
||||
|
||||
@Override
|
||||
public @NonNull Stream<Region> getConnectedRegions(Region region) {
|
||||
public @NonNull Stream<Region> getConnectedRegions(@NonNull Region region) {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user