From 24503eb330bf887f5c76afe2aaa9c9f2ce177460 Mon Sep 17 00:00:00 2001 From: Mike Beattie Date: Sun, 26 Aug 2012 14:44:09 +1200 Subject: altosdroid: whitespace (spaces to tabs) (part2) Signed-off-by: Mike Beattie --- altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'altosdroid/src/org/altusmetrum/AltosDroid/TelemetryService.java') 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; } -- cgit v1.2.3