remove trailing whitespaces

This commit is contained in:
yangfl 2018-01-06 11:48:51 +08:00
parent b91efaa973
commit 46f62e1af9
117 changed files with 3039 additions and 3040 deletions

View file

@ -23,7 +23,7 @@ public class I2PDMainActivity extends QtActivity
public void onCreate(Bundle savedInstanceState) {
I2PDMainActivity.setInstance(this);
super.onCreate(savedInstanceState);
//set the app be foreground (do not unload when RAM needed)
doBindService();
}
@ -45,8 +45,8 @@ public class I2PDMainActivity extends QtActivity
private static void setInstance(I2PDMainActivity instance) {
I2PDMainActivity.instance = instance;
}
// private LocalService mBoundService;
@ -82,7 +82,7 @@ public class I2PDMainActivity extends QtActivity
// class name because we want a specific service implementation that
// we know will be running in our own process (and thus won't be
// supporting component replacement by other applications).
bindService(new Intent(this,
bindService(new Intent(this,
LocalService.class), mConnection, Context.BIND_AUTO_CREATE);
mIsBound = true;
}

View file

@ -35,8 +35,8 @@ public class LocalService extends Service {
// Display a notification about us starting. We put an icon in the status bar.
showNotification();
}
@Override