File tree Expand file tree Collapse file tree 8 files changed +0
-24
lines changed
main/src/main/java/org/ricetea/barleyteaapi/api Expand file tree Collapse file tree 8 files changed +0
-24
lines changed Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .block .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .block .CustomBlock ;
1514public interface BlockRegister extends NSKeyedRegister <CustomBlock > {
1615 @ Nonnull
1716 static BlockRegister getInstance () {
18- BarleyTeaAPI .checkPluginUsable ();
1917 return BlockRegisterImpl .getInstance ();
2018 }
2119
2220 @ Nullable
2321 static BlockRegister getInstanceUnsafe () {
24- BarleyTeaAPI .checkPluginUsable ();
2522 return BlockRegisterImpl .getInstanceUnsafe ();
2623 }
2724
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .entity .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .entity .CustomEntity ;
1514public interface EntityRegister extends NSKeyedRegister <CustomEntity > {
1615 @ Nonnull
1716 static EntityRegister getInstance () {
18- BarleyTeaAPI .checkPluginUsable ();
1917 return EntityRegisterImpl .getInstance ();
2018 }
2119
2220 @ Nullable
2321 static EntityRegister getInstanceUnsafe () {
24- BarleyTeaAPI .checkPluginUsable ();
2522 return EntityRegisterImpl .getInstanceUnsafe ();
2623 }
2724
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .item .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .item .recipe .BaseCookingRecipe ;
@@ -16,13 +15,11 @@ public interface CookingRecipeRegister extends NSKeyedRegister<BaseCookingRecipe
1615
1716 @ Nonnull
1817 static CookingRecipeRegister getInstance () {
19- BarleyTeaAPI .checkPluginUsable ();
2018 return CookingRecipeRegisterImpl .getInstance ();
2119 }
2220
2321 @ Nullable
2422 static CookingRecipeRegister getInstanceUnsafe () {
25- BarleyTeaAPI .checkPluginUsable ();
2623 return CookingRecipeRegisterImpl .getInstanceUnsafe ();
2724 }
2825
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .item .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .item .recipe .BaseCraftingRecipe ;
@@ -16,13 +15,11 @@ public interface CraftingRecipeRegister extends NSKeyedRegister<BaseCraftingReci
1615
1716 @ Nonnull
1817 static CraftingRecipeRegister getInstance () {
19- BarleyTeaAPI .checkPluginUsable ();
2018 return CraftingRecipeRegisterImpl .getInstance ();
2119 }
2220
2321 @ Nullable
2422 static CraftingRecipeRegister getInstanceUnsafe () {
25- BarleyTeaAPI .checkPluginUsable ();
2623 return CraftingRecipeRegisterImpl .getInstanceUnsafe ();
2724 }
2825
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .item .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .item .CustomItem ;
1514public interface ItemRegister extends NSKeyedRegister <CustomItem > {
1615 @ Nonnull
1716 static ItemRegister getInstance () {
18- BarleyTeaAPI .checkPluginUsable ();
1917 return ItemRegisterImpl .getInstance ();
2018 }
2119
2220 @ Nullable
2321 static ItemRegister getInstanceUnsafe () {
24- BarleyTeaAPI .checkPluginUsable ();
2522 return ItemRegisterImpl .getInstanceUnsafe ();
2623 }
2724
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .item .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .item .render .ItemRenderer ;
1514public interface ItemRendererRegister extends NSKeyedRegister <ItemRenderer > {
1615 @ Nonnull
1716 static ItemRendererRegister getInstance () {
18- BarleyTeaAPI .checkPluginUsable ();
1917 return ItemRendererRegisterImpl .getInstance ();
2018 }
2119
2220 @ Nullable
2321 static ItemRendererRegister getInstanceUnsafe () {
24- BarleyTeaAPI .checkPluginUsable ();
2522 return ItemRendererRegisterImpl .getInstanceUnsafe ();
2623 }
2724
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .item .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .item .render .ItemSubRenderer ;
1514public interface ItemSubRendererRegister extends NSKeyedRegister <ItemSubRenderer > {
1615 @ Nonnull
1716 static ItemSubRendererRegister getInstance () {
18- BarleyTeaAPI .checkPluginUsable ();
1917 return ItemSubRendererRegisterImpl .getInstance ();
2018 }
2119
2220 @ Nullable
2321 static ItemSubRendererRegister getInstanceUnsafe () {
24- BarleyTeaAPI .checkPluginUsable ();
2522 return ItemSubRendererRegisterImpl .getInstanceUnsafe ();
2623 }
2724
Original file line number Diff line number Diff line change 11package org .ricetea .barleyteaapi .api .item .registration ;
22
3- import org .ricetea .barleyteaapi .BarleyTeaAPI ;
43import org .ricetea .barleyteaapi .api .base .registration .IRegister ;
54import org .ricetea .barleyteaapi .api .base .registration .NSKeyedRegister ;
65import org .ricetea .barleyteaapi .api .item .recipe .BaseSmithingRecipe ;
@@ -16,13 +15,11 @@ public interface SmithingRecipeRegister extends NSKeyedRegister<BaseSmithingReci
1615
1716 @ Nonnull
1817 static SmithingRecipeRegister getInstance () {
19- BarleyTeaAPI .checkPluginUsable ();
2018 return SmithingRecipeRegisterImpl .getInstance ();
2119 }
2220
2321 @ Nullable
2422 static SmithingRecipeRegister getInstanceUnsafe () {
25- BarleyTeaAPI .checkPluginUsable ();
2623 return SmithingRecipeRegisterImpl .getInstanceUnsafe ();
2724 }
2825
You can’t perform that action at this time.
0 commit comments