X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Fio%2FCloser.java;h=278a0433b026773faf0319565dd14f02a501155e;hb=a8bc3ffc9cf0cb7f18bc9dde44825e948ed3add2;hp=81d179c85a299b999c498004c01bbbcf49d60308;hpb=5fc85a727c84d03982ae0f0f85d17b93a71e40f8;p=jSite2.git diff --git a/src/net/pterodactylus/util/io/Closer.java b/src/net/pterodactylus/util/io/Closer.java index 81d179c..278a043 100644 --- a/src/net/pterodactylus/util/io/Closer.java +++ b/src/net/pterodactylus/util/io/Closer.java @@ -1,16 +1,16 @@ /* * freenet - Closer.java Copyright © 2007 David Roden - * + * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. - * + * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. - * + * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 59 Temple * Place - Suite 330, Boston, MA 02111-1307, USA. @@ -29,15 +29,14 @@ import java.util.zip.ZipFile; * null before being closed, and every possible execption is * swallowed. That makes this class perfect for use in the finally blocks of * try-catch-finally blocks. - * + * * @author David ‘Roden’ <bombe@freenetproject.org> - * @version $Id$ */ public class Closer { /** * Closes the given closeable. - * + * * @param closeable * The closeable to close */ @@ -46,13 +45,14 @@ public class Closer { try { closeable.close(); } catch (IOException ioe1) { + /* ignore. */ } } } /** * Closes the given socket. - * + * * @param socket * The socket to close */ @@ -61,13 +61,14 @@ public class Closer { try { socket.close(); } catch (IOException ioe1) { + /* ignore. */ } } } /** * Closes the given jar file. - * + * * @param jarFile * The jar file to close */ @@ -76,13 +77,14 @@ public class Closer { try { jarFile.close(); } catch (IOException e) { + /* ignore. */ } } } /** * Closes the given zip file. - * + * * @param zipFile * The zip file to close */ @@ -91,6 +93,7 @@ public class Closer { try { zipFile.close(); } catch (IOException e) { + /* ignore. */ } } }