summaryrefslogtreecommitdiff
path: root/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-08-26 14:44:09 +1200
committerMike Beattie <mike@ethernal.org>2012-08-26 14:44:09 +1200
commit24503eb330bf887f5c76afe2aaa9c9f2ce177460 (patch)
treec4e361f644810be03859f5aeaef931a27fe2091b /altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
parent7aab6e6b6e361455a7515fe6db7b0e9a6e4c786c (diff)
altosdroid: whitespace (spaces to tabs) (part2)
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java')
-rw-r--r--altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java b/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
index a4e85ad0..a1c5fede 100644
--- a/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
+++ b/altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java
@@ -51,13 +51,13 @@ public class TelemetryService extends Service {
private NotificationManager mNM;
@Override
- public void onCreate() {
+ public void onCreate() {
// Create a reference to the NotificationManager so that we can update our notifcation text later
mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
}
@Override
- public int onStartCommand(Intent intent, int flags, int startId) {
+ public int onStartCommand(Intent intent, int flags, int startId) {
Log.i("TelemetryService", "Received start id " + startId + ": " + intent);
CharSequence text = getText(R.string.telemetry_service_started);
@@ -84,7 +84,7 @@ public class TelemetryService extends Service {
}
@Override
- public void onDestroy() {
+ public void onDestroy() {
// Demote us from the foreground, and cancel the persistent notification.
@@ -95,7 +95,7 @@ public class TelemetryService extends Service {
}
@Override
- public IBinder onBind(Intent intent) {
+ public IBinder onBind(Intent intent) {
return mBinder;
}