diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-07-25 14:14:08 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-07-25 14:14:08 +1000 |
commit | 683c8e9c36330198922511750a1f25b6ce4d5f17 (patch) | |
tree | 0f262a3db0c2c1852c493a7acc27595fc80e6f28 /src/Java/miscutil/core/util/Utils.java | |
parent | 8918012c3ddef6917c24c6df376ab65fd427b344 (diff) | |
download | GT5-Unofficial-683c8e9c36330198922511750a1f25b6ce4d5f17.tar.gz GT5-Unofficial-683c8e9c36330198922511750a1f25b6ce4d5f17.tar.bz2 GT5-Unofficial-683c8e9c36330198922511750a1f25b6ce4d5f17.zip |
+ Added EV tier battery recipes.
+ Added more GT5.09 Support, making my Top tier machine components not load if they're already present.
% Changed some internal recipe handling.
Diffstat (limited to 'src/Java/miscutil/core/util/Utils.java')
-rw-r--r-- | src/Java/miscutil/core/util/Utils.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Java/miscutil/core/util/Utils.java b/src/Java/miscutil/core/util/Utils.java index 0e49521ccc..026e86ef48 100644 --- a/src/Java/miscutil/core/util/Utils.java +++ b/src/Java/miscutil/core/util/Utils.java @@ -371,10 +371,10 @@ public class Utils { Color c = new Color(r,g,b); String temp = Integer.toHexString( c.getRGB() & 0xFFFFFF ).toUpperCase(); - System.out.println( "hex: " + Integer.toHexString( c.getRGB() & 0xFFFFFF ) + " hex value:"+temp); + //System.out.println( "hex: " + Integer.toHexString( c.getRGB() & 0xFFFFFF ) + " hex value:"+temp); temp = Utils.appenedHexNotationToString(String.valueOf(temp)); - Utils.LOG_INFO("Made "+temp+" - Hopefully it's not a mess."); - Utils.LOG_INFO("It will decode into "+Integer.decode(temp)+"."); + Utils.LOG_WARNING("Made "+temp+" - Hopefully it's not a mess."); + Utils.LOG_WARNING("It will decode into "+Integer.decode(temp)+"."); return Integer.decode(temp); } @@ -474,10 +474,10 @@ public class Utils { temp = "0F0F0F"; } - Utils.LOG_INFO("Operating with "+temp); + Utils.LOG_WARNING("Operating with "+temp); temp = Utils.appenedHexNotationToString(String.valueOf(temp)); - Utils.LOG_INFO("Made "+temp+" - Hopefully it's not a mess."); - Utils.LOG_INFO("It will decode into "+Integer.decode(temp)+"."); + Utils.LOG_WARNING("Made "+temp+" - Hopefully it's not a mess."); + Utils.LOG_WARNING("It will decode into "+Integer.decode(temp)+"."); return Integer.decode(temp); } |