mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
catch exception using BT as second user
This commit is contained in:
parent
1e9cc5d325
commit
534612be85
1 changed files with 1 additions and 1 deletions
|
@ -1257,7 +1257,7 @@ public class BTService extends XWJIService {
|
||||||
dos = new DataOutputStream( socket.getOutputStream() );
|
dos = new DataOutputStream( socket.getOutputStream() );
|
||||||
dos.writeByte( BT_PROTO );
|
dos.writeByte( BT_PROTO );
|
||||||
break; // success!!!
|
break; // success!!!
|
||||||
} catch (IOException ioe) {
|
} catch (IOException|SecurityException ioe) {
|
||||||
// Log.d( TAG, "connect(): %s", ioe.getMessage() );
|
// Log.d( TAG, "connect(): %s", ioe.getMessage() );
|
||||||
long msLeft = end - System.currentTimeMillis();
|
long msLeft = end - System.currentTimeMillis();
|
||||||
if ( msLeft <= 0 ) {
|
if ( msLeft <= 0 ) {
|
||||||
|
|
Loading…
Reference in a new issue