Skip to content

Commit

Permalink
removed never thrown exception
Browse files Browse the repository at this point in the history
  • Loading branch information
NonSwag committed Apr 6, 2024
1 parent 26aa594 commit ac28c4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public abstract class CraftRegionizedArea<T extends Region> extends CraftArea im
public @Nullable UUID owner;
private T region;

protected CraftRegionizedArea(File schematicFolder, @NamePattern String name, World world, T region, int priority) throws IllegalArgumentException {
protected CraftRegionizedArea(File schematicFolder, @NamePattern String name, World world, T region, int priority) {
super(name, world, priority);
this.schematic = new File(schematicFolder, name + ".schem");
this.region = region;
Expand Down

0 comments on commit ac28c4c

Please sign in to comment.