From f8ecd30214ac30effdcb75e82ebe10c06251dc63 Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Wed, 3 Mar 2010 02:33:41 +0100 Subject: [PATCH] ColorUtil: Reencode the file in UTF-8 ColorUtil.java wasn't saved as a UTF-8 file, causing problems during compilation with scalac. To avoid this problem we reencoded it as UTF-8. Signed-off-by: David Soria Parra --- src/edu/kit/ipd/sonar/client/ColorUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/edu/kit/ipd/sonar/client/ColorUtil.java b/src/edu/kit/ipd/sonar/client/ColorUtil.java index 3946a27..5c87672 100644 --- a/src/edu/kit/ipd/sonar/client/ColorUtil.java +++ b/src/edu/kit/ipd/sonar/client/ColorUtil.java @@ -108,7 +108,7 @@ public static Color transformHSVtoRGB(final int hue, final float sat, case BLUE_MAGENTA: return new Color(val, p, q); case MAGENTA_RED: - default: //<- default value to ensure 360¡ = 0¡ + default: //<- default value to ensure 360 != 0¡ return new Color(val, t, p); } }