diff options
author | Herbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com> | 2010-10-28 02:03:01 +0200 |
---|---|---|
committer | Herbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com> | 2010-11-07 21:03:25 +0100 |
commit | 4e844ddbad38154f6b1cf55eaa42e8b2e3b77200 (patch) | |
tree | 2ae15721432cbf2dd6a03bff8c81c2f2842ebbd9 | |
parent | 4ae2365cf99d812da97b898392db8902e7233cb5 (diff) | |
download | BlueGPS-4e844ddbad38154f6b1cf55eaa42e8b2e3b77200.zip BlueGPS-4e844ddbad38154f6b1cf55eaa42e8b2e3b77200.tar.gz BlueGPS-4e844ddbad38154f6b1cf55eaa42e8b2e3b77200.tar.bz2 |
remove unused code
-rw-r--r-- | src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java b/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java index fdbc281..242e30a 100644 --- a/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java +++ b/src/org/broeuschmeul/android/gps/bluetooth/provider/BluetoothGpsProviderService.java @@ -70,7 +70,6 @@ public class BluetoothGpsProviderService extends Service implements NmeaListener private static final String LOG_TAG = "BlueGPS";
// private static final String LOG_TAG = BluetoothGpsProviderService.class.getSimpleName();
- private LocationManager lm;
private BlueetoothGpsManager gpsManager = null;
private PrintWriter writer;
private File trackFile;
@@ -81,7 +80,6 @@ public class BluetoothGpsProviderService extends Service implements NmeaListener public void onCreate() {
super.onCreate();
toast = Toast.makeText(getApplicationContext(), "NMEA track recording... on", Toast.LENGTH_SHORT);
- lm = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
}
@Override
|