fix warnings
[jSite2.git] / src / net / pterodactylus / util / io / Closer.java
index 81d179c..be679ee 100644 (file)
@@ -46,6 +46,7 @@ public class Closer {
                        try {
                                closeable.close();
                        } catch (IOException ioe1) {
+                               /* ignore. */
                        }
                }
        }
@@ -61,6 +62,7 @@ public class Closer {
                        try {
                                socket.close();
                        } catch (IOException ioe1) {
+                               /* ignore. */
                        }
                }
        }
@@ -76,6 +78,7 @@ public class Closer {
                        try {
                                jarFile.close();
                        } catch (IOException e) {
+                               /* ignore. */
                        }
                }
        }
@@ -91,6 +94,7 @@ public class Closer {
                        try {
                                zipFile.close();
                        } catch (IOException e) {
+                               /* ignore. */
                        }
                }
        }