mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
remove methods overridden just for logging
looks like I've fixed the crash I wanted to diagnose.
This commit is contained in:
parent
9a4fb44e72
commit
ff45340eb8
1 changed files with 0 additions and 30 deletions
|
@ -439,36 +439,6 @@ public class RelayService extends JobIntentService
|
|||
Log.d( TAG, "%s.onDestroy() DONE", this );
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onStopCurrentWork() {
|
||||
Log.d( TAG, "onStopCurrentWork() called");
|
||||
boolean result = super.onStopCurrentWork();
|
||||
Log.d( TAG, "onStopCurrentWork() => %b", result);
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTaskRemoved(Intent rootIntent) {
|
||||
Log.d( TAG, "onTaskRemoved() called");
|
||||
super.onTaskRemoved(rootIntent);
|
||||
Log.d( TAG, "onTaskRemoved() => (void)");
|
||||
}
|
||||
|
||||
@Override
|
||||
public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
|
||||
Log.d( TAG, "onStartCommand(%s) called", intent );
|
||||
int result = super.onStartCommand(intent, flags, startId );
|
||||
Log.d( TAG, "onStartCommand() => %d", result );
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLowMemory() {
|
||||
Log.d( TAG, "onLowMemory() called" );
|
||||
super.onLowMemory();
|
||||
Log.d( TAG, "onLowMemory() => void" );
|
||||
}
|
||||
|
||||
// NetStateCache.StateChangedIf interface
|
||||
@Override
|
||||
public void onNetAvail( boolean nowAvailable )
|
||||
|
|
Loading…
Reference in a new issue