mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
cleanup -- no meaningful code change
This commit is contained in:
parent
db71c4e4e2
commit
1592ac3ede
1 changed files with 3 additions and 3 deletions
|
@ -451,7 +451,7 @@ public class SMSService extends XWService {
|
|||
byte[] data = bas.toByteArray();
|
||||
boolean result = false;
|
||||
byte[][] msgs = breakAndEncode( data );
|
||||
result = sendBuffers( msgs, phone, data );
|
||||
result = sendBuffers( msgs, phone );
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -642,7 +642,7 @@ public class SMSService extends XWService {
|
|||
return PendingIntent.getBroadcast( this, 0, intent, 0 );
|
||||
}
|
||||
|
||||
private boolean sendBuffers( byte[][] fragments, String phone, byte[] data )
|
||||
private boolean sendBuffers( byte[][] fragments, String phone )
|
||||
{
|
||||
boolean success = false;
|
||||
if ( XWPrefs.getSMSEnabled( this ) ) {
|
||||
|
@ -735,7 +735,7 @@ public class SMSService extends XWService {
|
|||
|
||||
m_receiveReceiver = new BroadcastReceiver() {
|
||||
@Override
|
||||
public void onReceive(Context arg0, Intent arg1)
|
||||
public void onReceive( Context context, Intent intent )
|
||||
{
|
||||
if ( Activity.RESULT_OK != getResultCode() ) {
|
||||
DbgUtils.logf( "SMS delivery result: FAILURE" );
|
||||
|
|
Loading…
Add table
Reference in a new issue