Skip to content

Commit bb06889

Browse files
spotlessApply (#312)
Co-authored-by: GitHub Actions <>
1 parent a0ed67e commit bb06889

File tree

102 files changed

+359
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+359
-375
lines changed

src/main/java/com/github/gtexpert/core/GTExpertMod.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
import net.minecraftforge.fml.common.eventhandler.EventPriority;
1919
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
2020

21-
import gregtech.GTInternalTags;
22-
import gregtech.api.GregTechAPI;
23-
import gregtech.api.cover.CoverDefinition;
24-
2521
import com.github.gtexpert.core.api.GTEValues;
2622
import com.github.gtexpert.core.api.util.GTELog;
2723
import com.github.gtexpert.core.api.util.Mods;
@@ -30,6 +26,10 @@
3026
import com.github.gtexpert.core.modules.GTEModuleManager;
3127
import com.github.gtexpert.core.modules.GTEModules;
3228

29+
import gregtech.GTInternalTags;
30+
import gregtech.api.GregTechAPI;
31+
import gregtech.api.cover.CoverDefinition;
32+
3333
@Mod(modid = GTEValues.MODID,
3434
name = GTEValues.MODNAME,
3535
acceptedMinecraftVersions = "[1.12.2,1.13)",

src/main/java/com/github/gtexpert/core/api/capability/MultiblockRecipeLogicNoCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package com.github.gtexpert.core.api.capability;
22

3+
import com.github.gtexpert.core.integration.deda.recipemaps.RecipeMapDraconicFusion;
4+
35
import gregtech.api.capability.impl.MultiblockRecipeLogic;
46
import gregtech.api.metatileentity.multiblock.RecipeMapMultiblockController;
57

6-
import com.github.gtexpert.core.integration.deda.recipemaps.RecipeMapDraconicFusion;
7-
88
/**
99
* This recipe logic disables cache used for speeding up recipe check.
1010
* The reason is we do some special things inside {@link RecipeMapDraconicFusion},

src/main/java/com/github/gtexpert/core/api/recipes/GTERecipeMaps.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import net.minecraft.init.SoundEvents;
44

5+
import com.github.gtexpert.core.api.gui.GTEGuiTextures;
6+
57
import gregtech.api.gui.GuiTextures;
68
import gregtech.api.gui.widgets.ProgressWidget;
79
import gregtech.api.recipes.RecipeMap;
810
import gregtech.api.recipes.builders.SimpleRecipeBuilder;
911
import gregtech.core.sound.GTSoundEvents;
1012

11-
import com.github.gtexpert.core.api.gui.GTEGuiTextures;
12-
1313
import crafttweaker.annotations.ZenRegister;
1414
import stanhebben.zenscript.annotations.ZenExpansion;
1515
import stanhebben.zenscript.annotations.ZenProperty;

src/main/java/com/github/gtexpert/core/api/unification/material/GTEFirstDegreeMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.github.gtexpert.core.api.unification.material;
22

3+
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
4+
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
35
import static gregtech.api.GTValues.*;
46
import static gregtech.api.unification.material.Materials.*;
57
import static gregtech.api.unification.material.info.MaterialFlags.*;
68
import static gregtech.api.unification.material.info.MaterialIconSet.*;
7-
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
8-
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
99

1010
import gregtech.api.fluids.FluidBuilder;
1111
import gregtech.api.unification.material.Material;

src/main/java/com/github/gtexpert/core/api/unification/material/GTEMaterialFlags.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import static gregtech.api.unification.material.info.MaterialFlags.*;
44

5+
import com.github.gtexpert.core.api.util.Mods;
6+
57
import gregtech.api.fluids.FluidBuilder;
68
import gregtech.api.fluids.store.FluidStorageKeys;
79
import gregtech.api.unification.material.Materials;
810
import gregtech.api.unification.material.properties.*;
911
import gregtech.api.unification.ore.OrePrefix;
1012

11-
import com.github.gtexpert.core.api.util.Mods;
12-
1313
public class GTEMaterialFlags {
1414

1515
public static void init() {

src/main/java/com/github/gtexpert/core/api/unification/material/GTEMaterials.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.github.gtexpert.core.api.unification.material;
22

3-
import gregtech.api.unification.material.Material;
4-
53
import com.github.gtexpert.core.api.GTEValues;
64
import com.github.gtexpert.core.api.unification.material.ingredients.*;
75
import com.github.gtexpert.core.api.util.Mods;
86

7+
import gregtech.api.unification.material.Material;
8+
99
/**
1010
* Material Registration.
1111
* <p>

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/AEFirstDegreeMaterials.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
package com.github.gtexpert.core.api.unification.material.ingredients;
22

3+
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
4+
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
35
import static gregicality.multiblocks.api.unification.GCYMMaterialFlags.NO_ALLOY_BLAST_RECIPES;
46
import static gregtech.api.GTValues.*;
57
import static gregtech.api.unification.material.Materials.*;
68
import static gregtech.api.unification.material.info.MaterialFlags.*;
7-
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
8-
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
9+
10+
import com.github.gtexpert.core.api.GTEValues;
911

1012
import gregtech.api.fluids.FluidBuilder;
1113
import gregtech.api.unification.material.Material;
@@ -14,8 +16,6 @@
1416
import gregtech.api.unification.material.properties.BlastProperty.GasTier;
1517
import gregtech.api.unification.ore.OrePrefix;
1618

17-
import com.github.gtexpert.core.api.GTEValues;
18-
1919
public class AEFirstDegreeMaterials {
2020

2121
/**

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/AvaritiaFirstDegreeMaterials.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package com.github.gtexpert.core.api.unification.material.ingredients;
22

3-
import static gregtech.api.GTValues.*;
4-
import static gregtech.api.unification.material.Materials.*;
5-
import static gregtech.api.unification.material.info.MaterialFlags.*;
63
import static com.github.gtexpert.core.api.unification.GTEElements.*;
74
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
85
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
6+
import static gregtech.api.GTValues.*;
7+
import static gregtech.api.unification.material.Materials.*;
8+
import static gregtech.api.unification.material.info.MaterialFlags.*;
9+
10+
import com.github.gtexpert.core.api.unification.material.info.GTEMaterialIconSet;
911

1012
import gregtech.api.fluids.FluidBuilder;
1113
import gregtech.api.unification.material.Material;
1214
import gregtech.api.unification.material.properties.ToolProperty;
1315

14-
import com.github.gtexpert.core.api.unification.material.info.GTEMaterialIconSet;
15-
1616
public class AvaritiaFirstDegreeMaterials {
1717

1818
public static void init() {

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/DEFirstDegreeMaterials.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
package com.github.gtexpert.core.api.unification.material.ingredients;
22

3-
import static gregtech.api.GTValues.*;
4-
import static gregtech.api.unification.material.Materials.*;
5-
import static gregtech.api.unification.material.info.MaterialFlags.*;
63
import static com.github.gtexpert.core.api.unification.GTEElements.*;
74
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
85
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
6+
import static gregtech.api.GTValues.*;
7+
import static gregtech.api.unification.material.Materials.*;
8+
import static gregtech.api.unification.material.info.MaterialFlags.*;
9+
10+
import com.github.gtexpert.core.api.GTEValues;
11+
import com.github.gtexpert.core.api.util.Mods;
912

1013
import gregtech.api.fluids.FluidBuilder;
1114
import gregtech.api.unification.material.Material;
@@ -15,9 +18,6 @@
1518

1619
import gregicality.multiblocks.api.fluids.GCYMFluidStorageKeys;
1720

18-
import com.github.gtexpert.core.api.GTEValues;
19-
import com.github.gtexpert.core.api.util.Mods;
20-
2121
public class DEFirstDegreeMaterials {
2222

2323
/**

src/main/java/com/github/gtexpert/core/api/unification/material/ingredients/EIOFirstDegreeMaterials.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
package com.github.gtexpert.core.api.unification.material.ingredients;
22

3+
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
4+
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
35
import static gregtech.api.GTValues.*;
46
import static gregtech.api.unification.material.Materials.*;
57
import static gregtech.api.unification.material.info.MaterialFlags.*;
6-
import static com.github.gtexpert.core.api.unification.material.GTEMaterials.*;
7-
import static com.github.gtexpert.core.api.util.GTEUtility.gteId;
8+
9+
import com.github.gtexpert.core.api.GTEValues;
810

911
import gregtech.api.fluids.FluidBuilder;
1012
import gregtech.api.unification.material.Material;
1113
import gregtech.api.unification.material.info.MaterialIconSet;
1214
import gregtech.api.unification.material.properties.BlastProperty.GasTier;
1315

14-
import com.github.gtexpert.core.api.GTEValues;
15-
1616
public class EIOFirstDegreeMaterials {
1717

1818
/**

0 commit comments

Comments
 (0)