Index: trunk/src/org/openstreetmap/josm/tools/Utils.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/Utils.java	(revision 6267)
+++ trunk/src/org/openstreetmap/josm/tools/Utils.java	(revision 6268)
@@ -328,6 +328,6 @@
         try {
             c.close();
-        } catch(IOException e) {
-            // ignore
+        } catch (IOException e) {
+            Main.warn(e);
         }
     }
@@ -342,13 +342,19 @@
         try {
             zip.close();
-        } catch(IOException e) {
-            // ignore
-        }
-    }
-
-    private final static double EPSILION = 1e-11;
-
+        } catch (IOException e) {
+            Main.warn(e);
+        }
+    }
+
+    private final static double EPSILON = 1e-11;
+
+    /**
+     * Determines if the two given double values are equal (their delta being smaller than a fixed epsilon)
+     * @param a The first double value to compare
+     * @param b The second double value to compare
+     * @return {@code true} if {@code abs(a - b) <= 1e-11}, {@code false} otherwise
+     */
     public static boolean equalsEpsilon(double a, double b) {
-        return Math.abs(a - b) <= EPSILION;
+        return Math.abs(a - b) <= EPSILON;
     }
 
