fix compile failure: never meant to check this change in.

This commit is contained in:
Eric House 2013-01-19 16:02:58 -08:00
parent 6797e069bc
commit 360602b3a0

View file

@ -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,