Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
spotlessApply (#270)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub GTNH Actions <>
  • Loading branch information
github-actions[bot] authored Feb 21, 2024
1 parent a217484 commit 691c073
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import static gregtech.api.enums.Mods.NewHorizonsCoreMod;
import static gregtech.api.util.GT_ModHandler.getModItem;
import static gregtech.api.util.GT_Utility.getPlasmaFuelValueInEUPerLiterFromFluid;
import static gregtech.api.util.GT_Utility.getPlasmaFuelValueInEUPerLiterFromMaterial;
import static java.lang.Math.min;

import java.util.ArrayList;
Expand Down Expand Up @@ -484,10 +483,10 @@ private static double getMaxPlasmaTurbineEfficiency() {
Materials.Oxygen.getPlasma(1).getFluid(),
Materials.Tin.getPlasma(1).getFluid(),
FluidRegistry.getFluid("plasma.fermium"),
FluidRegistry.getFluid("plasma.neptunium")
).collect(Collectors.toList());
FluidRegistry.getFluid("plasma.neptunium")).collect(Collectors.toList());

private static final HashMap<String, Long> plasmaEnergyMap = new HashMap<>() {

{
for (Fluid fluid : VALID_PLASMAS) {
if (fluid == null) continue;
Expand Down

0 comments on commit 691c073

Please sign in to comment.