From 302b129e3f14708b44fecb79953dc477381dfe41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20M=C3=A9tais?= Date: Wed, 18 Feb 2015 15:03:35 +0100 Subject: [PATCH] Dead local store CID #1270889, #1270891 --- .../tv/src/org/videolan/vlc/gui/tv/RecommendationsService.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/vlc-android/tv/src/org/videolan/vlc/gui/tv/RecommendationsService.java b/vlc-android/tv/src/org/videolan/vlc/gui/tv/RecommendationsService.java index 2392faaf0..9798ce46b 100644 --- a/vlc-android/tv/src/org/videolan/vlc/gui/tv/RecommendationsService.java +++ b/vlc-android/tv/src/org/videolan/vlc/gui/tv/RecommendationsService.java @@ -72,7 +72,6 @@ public class RecommendationsService extends IntentService { @Override protected void onHandleIntent(Intent intent) { if (intent != null) { - final String action = intent.getAction(); MediaLibrary.getInstance().addUpdateHandler(mHandler); } } @@ -84,7 +83,6 @@ public class RecommendationsService extends IntentService { sContext.getSystemService(Context.NOTIFICATION_SERVICE); } - Bundle extras = new Bundle(); // if (mBackgroundUri != movie.getBackgroundUri()) { // extras.putString(EXTRA_BACKGROUND_IMAGE_URL, movie.getBackgroundUri()); // } @@ -102,7 +100,6 @@ public class RecommendationsService extends IntentService { .setLargeIcon(sMediaDatabase.getPicture(sContext, movie.getLocation())) .setSmallIcon(R.drawable.icon) .setContentIntent(buildPendingIntent(movie)) -// .setExtras(extras)) ).build(); // post the recommendation to the NotificationManager -- GitLab