aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-10-14 21:19:09 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-10-14 21:19:09 +0100
commitf41f53aea4d42d26001572b72a1f3e40feb3f159 (patch)
treecd33782e68ad30a277201cb96be3eedf7f424316 /src/Java/gtPlusPlus/core/util
parent0ba472ad9bc0f829302f41128df559fa852113ff (diff)
downloadGT5-Unofficial-f41f53aea4d42d26001572b72a1f3e40feb3f159.tar.gz
GT5-Unofficial-f41f53aea4d42d26001572b72a1f3e40feb3f159.tar.bz2
GT5-Unofficial-f41f53aea4d42d26001572b72a1f3e40feb3f159.zip
+ Initial work on Algae.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r--src/Java/gtPlusPlus/core/util/Utils.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/util/Utils.java b/src/Java/gtPlusPlus/core/util/Utils.java
index 0325198213..c73f9ee7a4 100644
--- a/src/Java/gtPlusPlus/core/util/Utils.java
+++ b/src/Java/gtPlusPlus/core/util/Utils.java
@@ -378,9 +378,6 @@ public class Utils {
}
final 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);
temp = Utils.appenedHexNotationToString(String.valueOf(temp));
Logger.WARNING("Made " + temp + " - Hopefully it's not a mess.");
Logger.WARNING("It will decode into " + Integer.decode(temp) + ".");