diff options
Diffstat (limited to 'main/java/gregtech/common/GT_IteratorRandom.java')
-rw-r--r-- | main/java/gregtech/common/GT_IteratorRandom.java | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/main/java/gregtech/common/GT_IteratorRandom.java b/main/java/gregtech/common/GT_IteratorRandom.java index 7db9aa0c49..e0e33bfd42 100644 --- a/main/java/gregtech/common/GT_IteratorRandom.java +++ b/main/java/gregtech/common/GT_IteratorRandom.java @@ -1,21 +1,21 @@ -/* 1: */ package gregtech.common;
-/* 2: */
-/* 3: */ import java.util.Random;
-/* 4: */
-/* 5: */ public class GT_IteratorRandom
-/* 6: */ extends Random
-/* 7: */ {
-/* 8: */ private static final long serialVersionUID = 1L;
-/* 9: 8 */ public int mIterationStep = 2147483647;
-/* 10: */
-/* 11: */ public int nextInt(int aParameter)
-/* 12: */ {
-/* 13:11 */ if ((this.mIterationStep == 0) || (this.mIterationStep > aParameter)) {
-/* 14:12 */ this.mIterationStep = aParameter;
-/* 15: */ }
-/* 16:14 */ return --this.mIterationStep;
-/* 17: */ }
-/* 18: */ }
+package gregtech.common;
+
+import java.util.Random;
+
+public class GT_IteratorRandom
+ extends Random
+{
+ private static final long serialVersionUID = 1L;
+ public int mIterationStep = 2147483647;
+
+ public int nextInt(int aParameter)
+ {
+ if ((this.mIterationStep == 0) || (this.mIterationStep > aParameter)) {
+ this.mIterationStep = aParameter;
+ }
+ return --this.mIterationStep;
+ }
+}
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|