Skip to content

Commit

Permalink
added static utility method for closing a socket quietly
Browse files Browse the repository at this point in the history
Dealing with IOException on Socket.close in each finally where it
appears is a pain...
  • Loading branch information
ceharris committed Apr 3, 2013
1 parent a930af1 commit bce91a1
Showing 1 changed file with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2011, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/
package ch.qos.logback.core.util;

import java.io.IOException;
import java.net.Socket;

/**
* Static utility methods for {@link Socket} objects.
*
* @author Carl Harris
*/
public class SocketUtil {

/**
* Closes a socket while suppressing any {@code IOException} that occurs.
* @param socket the socket to close
*/
public static void closeQuietly(Socket socket) {
if (socket == null) return;
try {
socket.close();
}
catch (IOException ex) {
assert true; // avoid an empty catch
}
}

}

0 comments on commit bce91a1

Please sign in to comment.