We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2477534 commit 32a64a0Copy full SHA for 32a64a0
worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/FaweRegionExtent.java
@@ -26,6 +26,7 @@
26
27
public abstract class FaweRegionExtent extends ResettableExtent implements IBatchProcessor {
28
29
+ @Nullable
30
private final FaweLimit limit;
31
private final boolean hasLimit;
32
@@ -34,7 +35,7 @@ public abstract class FaweRegionExtent extends ResettableExtent implements IBatc
34
35
*
36
* @param extent the extent
37
*/
- public FaweRegionExtent(Extent extent, FaweLimit limit) {
38
+ public FaweRegionExtent(Extent extent, @Nullable FaweLimit limit) {
39
super(extent);
40
this.limit = limit;
41
this.hasLimit = limit != null;
0 commit comments