Skip to content

Commit c82e996

Browse files
committed
sPoTlEsS aPpLy
1 parent 9ba2db8 commit c82e996

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/cleanroommc/groovyscript/compat/mods/GroovyPropertyContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected void addPropertyFieldsOf(@NotNull Object object, boolean privateToo) {
6666
protected void addPropertyFieldsOf(@NotNull Object object, @Nullable Class<?> untilSuperclass, boolean privateToo) {
6767
boolean staticOnly = false;
6868
Class<?> clazz;
69-
if (object instanceof Class<?> c) {
69+
if (object instanceof Class<?>c) {
7070
clazz = c;
7171
staticOnly = true;
7272
} else {

src/main/java/com/cleanroommc/groovyscript/compat/mods/additionalenchantedminer/WorkBenchPlus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void removeAll() {
5454
WorkbenchRecipe::removeRecipe
5555
);
5656
iterableRecipe.forEach(
57-
recipe -> addBackup(new IngredientRecipe(recipe.location(),recipe.getOutput(),recipe.energy(),recipe.showInJEI(),recipe.inputs(),recipe.hardCode()))
57+
recipe -> addBackup(new IngredientRecipe(recipe.location(), recipe.getOutput(), recipe.energy(), recipe.showInJEI(), recipe.inputs(), recipe.hardCode()))
5858
);
5959
}
6060

0 commit comments

Comments
 (0)