collapse catch statements since all do the same thing

This commit is contained in:
Eric House 2013-08-02 08:02:46 -07:00
parent da54b1e5fb
commit 1e94e217b8

View file

@ -177,11 +177,7 @@ public class NetUtils {
socket.close();
}
} catch( java.net.UnknownHostException uhe ) {
DbgUtils.loge( uhe );
} catch( java.io.IOException ioe ) {
DbgUtils.loge( ioe );
} catch( NullPointerException npe ) {
} catch( Exception npe ) {
DbgUtils.loge( npe );
}
return msgs;