mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-28 18:15:27 +02:00
Make constructor private
This commit is contained in:
@@ -61,9 +61,9 @@ public class BlockTypeWrapper {
|
|||||||
this.blockCategoryId = null;
|
this.blockCategoryId = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public BlockTypeWrapper(@Nullable String blockCategoryId) {
|
private BlockTypeWrapper(@NotNull final String blockCategoryId) {
|
||||||
this.blockType = null;
|
this.blockType = null;
|
||||||
this.blockCategoryId = blockCategoryId;
|
this.blockCategoryId = Preconditions.checkNotNull(blockCategoryId);
|
||||||
this.blockCategory = null;
|
this.blockCategory = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user