mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Make constructor private
This commit is contained in:
parent
a19fa1b92c
commit
9b997d2195
1 changed files with 2 additions and 2 deletions
|
@ -61,9 +61,9 @@ public class BlockTypeWrapper {
|
|||
this.blockCategoryId = null;
|
||||
}
|
||||
|
||||
public BlockTypeWrapper(@Nullable String blockCategoryId) {
|
||||
private BlockTypeWrapper(@NotNull final String blockCategoryId) {
|
||||
this.blockType = null;
|
||||
this.blockCategoryId = blockCategoryId;
|
||||
this.blockCategoryId = Preconditions.checkNotNull(blockCategoryId);
|
||||
this.blockCategory = null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue