aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/Ic2ExpReactorPlanner/components/Reflector.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/Ic2ExpReactorPlanner/components/Reflector.java')
-rw-r--r--src/main/java/Ic2ExpReactorPlanner/components/Reflector.java15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/main/java/Ic2ExpReactorPlanner/components/Reflector.java b/src/main/java/Ic2ExpReactorPlanner/components/Reflector.java
index bca0e9f43a..f0b16f3d14 100644
--- a/src/main/java/Ic2ExpReactorPlanner/components/Reflector.java
+++ b/src/main/java/Ic2ExpReactorPlanner/components/Reflector.java
@@ -1,7 +1,6 @@
/*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
+ * To change this license header, choose License Headers in Project Properties. To change this template file, choose
+ * Tools | Templates and open the template in the editor.
*/
package Ic2ExpReactorPlanner.components;
@@ -9,19 +8,15 @@ import gregtech.api.objects.GT_ItemStack;
/**
* Represents a neutron reflector in a reactor.
+ *
* @author Brian McCloud
*/
public class Reflector extends ReactorItem {
private static String mcVersion = "1.12.2";
- public Reflector(
- final int id,
- final String baseName,
- final GT_ItemStack aStack,
- final double maxDamage,
- final double maxHeat,
- final String sourceMod) {
+ public Reflector(final int id, final String baseName, final GT_ItemStack aStack, final double maxDamage,
+ final double maxHeat, final String sourceMod) {
super(id, baseName, aStack, maxDamage, maxHeat, sourceMod);
}