summaryrefslogtreecommitdiffstats
path: root/android/src/org
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-10-31 12:16:06 +0000
committerThomas Martitz <kugel@rockbox.org>2010-10-31 12:16:06 +0000
commitc8901b3506ffb2f18798b005552c61b92b9d6a6c (patch)
tree998870c94248805abef88ca3a478e9173c87d412 /android/src/org
parentbf63f241681ee5d09496444e711979dbad09419f (diff)
downloadrockbox-c8901b3506ffb2f18798b005552c61b92b9d6a6c.tar.gz
rockbox-c8901b3506ffb2f18798b005552c61b92b9d6a6c.zip
Remove the use of the instance field in non-anymore-static methods
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28412 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'android/src/org')
-rw-r--r--android/src/org/rockbox/RockboxService.java34
1 files changed, 15 insertions, 19 deletions
diff --git a/android/src/org/rockbox/RockboxService.java b/android/src/org/rockbox/RockboxService.java
index bbcdfec4a7..63ebd27566 100644
--- a/android/src/org/rockbox/RockboxService.java
+++ b/android/src/org/rockbox/RockboxService.java
@@ -311,30 +311,26 @@ public class RockboxService extends Service
public void startForeground()
{
- if (instance != null)
- {
- /*
- * Send the notification.
- * We use a layout id because it is a unique number.
- * We use it later to cancel.
- */
- instance.mNM.notify(R.string.notification, instance.notification);
- /*
- * this call makes the service run as foreground, which
- * provides enough cpu time to do music decoding in the
- * background
- */
- instance.startForegroundCompat(R.string.notification,
- instance.notification);
- }
+ /*
+ * Send the notification.
+ * We use a layout id because it is a unique number.
+ * We use it later to cancel.
+ */
+ mNM.notify(R.string.notification, instance.notification);
+ /*
+ * this call makes the service run as foreground, which
+ * provides enough cpu time to do music decoding in the
+ * background
+ */
+ startForegroundCompat(R.string.notification, notification);
}
public void stopForeground()
{
- if (instance.notification != null)
+ if (notification != null)
{
- instance.stopForegroundCompat(R.string.notification);
- instance.mNM.cancel(R.string.notification);
+ stopForegroundCompat(R.string.notification);
+ mNM.cancel(R.string.notification);
}
}