Cleanup stuff

This commit is contained in:
2026-03-28 22:07:57 +01:00
parent 4c8b55167c
commit b5de5d4288
20 changed files with 22 additions and 161 deletions
@@ -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();
}
};