mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-20 22:26:54 +01:00
collapse catch statements since all do the same thing
This commit is contained in:
parent
da54b1e5fb
commit
1e94e217b8
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue