remove Id keyword
[jSite2.git] / src / net / pterodactylus / util / io / Closer.java
index 81d179c..6207c12 100644 (file)
@@ -31,7 +31,6 @@ import java.util.zip.ZipFile;
  * try-catch-finally blocks.
  * 
  * @author David ‘Roden’ <bombe@freenetproject.org>
- * @version $Id$
  */
 public class Closer {
 
@@ -46,6 +45,7 @@ public class Closer {
                        try {
                                closeable.close();
                        } catch (IOException ioe1) {
+                               /* ignore. */
                        }
                }
        }
@@ -61,6 +61,7 @@ public class Closer {
                        try {
                                socket.close();
                        } catch (IOException ioe1) {
+                               /* ignore. */
                        }
                }
        }
@@ -76,6 +77,7 @@ public class Closer {
                        try {
                                jarFile.close();
                        } catch (IOException e) {
+                               /* ignore. */
                        }
                }
        }
@@ -91,6 +93,7 @@ public class Closer {
                        try {
                                zipFile.close();
                        } catch (IOException e) {
+                               /* ignore. */
                        }
                }
        }