mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-07 20:46:17 +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();
|
socket.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch( java.net.UnknownHostException uhe ) {
|
} catch( Exception npe ) {
|
||||||
DbgUtils.loge( uhe );
|
|
||||||
} catch( java.io.IOException ioe ) {
|
|
||||||
DbgUtils.loge( ioe );
|
|
||||||
} catch( NullPointerException npe ) {
|
|
||||||
DbgUtils.loge( npe );
|
DbgUtils.loge( npe );
|
||||||
}
|
}
|
||||||
return msgs;
|
return msgs;
|
||||||
|
|
Loading…
Add table
Reference in a new issue