Author: Andreas Tille <tille@debian.org>
Date:  Sat, 28 Jan 2012 08:59:13 +0100
Description: Java called in a pbuilder environment just fails if
 finding the '°' character in the comment - so it was replaced

--- a/src/utils/Utils.java
+++ b/src/utils/Utils.java
@@ -614,7 +614,7 @@ public class Utils {
 		// line
 		// gives
 		// dPhi=0
-		// if dLon over 180° take shorter rhumb across 180° meridian:
+		// if dLon over 180 degree take shorter rhumb across 180 degree meridian:
 		if (dLon > Math.PI)
 			dLon = 2 * Math.PI - dLon;
 		double distance = Math.sqrt(dLat * dLat + q * q * dLon * dLon)
--- a/src/colorpicker/swing/DialogFooter.java
+++ b/src/colorpicker/swing/DialogFooter.java
@@ -74,13 +74,13 @@ import colorpicker.util.JVM;
  * <P>In each constant the first option is the default button unless
  * you specify otherwise.  The Apple Interface Guidelines advises:
  * "The default button should be the button that represents the
- * action that the user is most likely to perform if that action isn�t
+ * action that the user is most likely to perform if that action isn't
  * potentially dangerous."
  * <P>The YES_NO options should be approached with special reluctance.
  * Microsoft <A HREF="http://msdn.microsoft.com/en-us/library/aa511331.aspx">cautions</A>,
  * "Use Yes and No buttons only to respond to yes or no questions."  This seems
  * obvious enough, but Apple adds, "Button names should correspond to the action
- * the user performs when pressing the button�for example, Erase, Save, or Delete."
+ * the user performs when pressing the button - for example, Erase, Save, or Delete."
  * So instead of presenting a YES_NO dialog with the question "Do you want to continue?"
  * a better dialog might provide the options "Cancel" and "Continue".  In short: we
  * as developers might tend to lazily use this option and phrase dialogs in such
