mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Make constructor private
This commit is contained in:
parent
a19fa1b92c
commit
9b997d2195
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user