Skip to content

Commit

Permalink
ColorUtil: Reencode the file in UTF-8
Browse files Browse the repository at this point in the history
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 <dsp@php.net>
  • Loading branch information
dsp committed Mar 3, 2010
1 parent 9c43f5d commit f8ecd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edu/kit/ipd/sonar/client/ColorUtil.java
Expand Up @@ -108,7 +108,7 @@ public static Color transformHSVtoRGB(final int hue, final float sat,
case BLUE_MAGENTA: case BLUE_MAGENTA:
return new Color(val, p, q); return new Color(val, p, q);
case MAGENTA_RED: case MAGENTA_RED:
default: //<- default value to ensure 360¡ = 0¡ default: //<- default value to ensure 360 != 0¡
return new Color(val, t, p); return new Color(val, t, p);
} }
} }
Expand Down

0 comments on commit f8ecd30

Please sign in to comment.