mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
fix compile failure: never meant to check this change in.
This commit is contained in:
parent
6797e069bc
commit
360602b3a0
1 changed files with 8 additions and 10 deletions
|
@ -377,16 +377,14 @@ public class CommsTransport implements TransportProcs,
|
||||||
|
|
||||||
switch ( addr.conType ) {
|
switch ( addr.conType ) {
|
||||||
case COMMS_CONN_RELAY:
|
case COMMS_CONN_RELAY:
|
||||||
nSent = RelayService.sendPacket( m_context, addr.sms_phone,
|
if ( NetStateCache.netAvail( m_context ) ) {
|
||||||
gameID, buf );
|
putOut( buf ); // add to queue
|
||||||
// if ( NetStateCache.netAvail( m_context ) ) {
|
if ( null == m_thread ) {
|
||||||
// putOut( buf ); // add to queue
|
m_thread = new CommsThread();
|
||||||
// if ( null == m_thread ) {
|
m_thread.start();
|
||||||
// m_thread = new CommsThread();
|
}
|
||||||
// m_thread.start();
|
nSent = buf.length;
|
||||||
// }
|
}
|
||||||
// nSent = buf.length;
|
|
||||||
// }
|
|
||||||
break;
|
break;
|
||||||
case COMMS_CONN_SMS:
|
case COMMS_CONN_SMS:
|
||||||
nSent = SMSService.sendPacket( m_context, addr.sms_phone,
|
nSent = SMSService.sendPacket( m_context, addr.sms_phone,
|
||||||
|
|
Loading…
Reference in a new issue