[Android] Remove unused variable
Jean-Baptiste Kempf
git at videolan.org
Thu Apr 26 14:59:44 CEST 2012
android | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr 26 14:57:40 2012 +0200| [b203f772eb452e8e8a48b778422f536599bb8d23] | committer: Jean-Baptiste Kempf
Remove unused variable
> http://git.videolan.org/gitweb.cgi/android.git/?a=commit;h=b203f772eb452e8e8a48b778422f536599bb8d23
---
.../vlc/gui/audio/AudioPlayerActivity.java | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/vlc-android/src/org/videolan/vlc/gui/audio/AudioPlayerActivity.java b/vlc-android/src/org/videolan/vlc/gui/audio/AudioPlayerActivity.java
index df07ac9..eea98a2 100644
--- a/vlc-android/src/org/videolan/vlc/gui/audio/AudioPlayerActivity.java
+++ b/vlc-android/src/org/videolan/vlc/gui/audio/AudioPlayerActivity.java
@@ -50,7 +50,6 @@ public class AudioPlayerActivity extends Activity implements IAudioPlayer {
private TextView mTime;
private TextView mLength;
private ImageButton mPlayPause;
- private ImageButton mStop;
private ImageButton mNext;
private ImageButton mPrevious;
private ImageButton mShuffle;
@@ -81,7 +80,6 @@ public class AudioPlayerActivity extends Activity implements IAudioPlayer {
mTime = (TextView) findViewById(R.id.time);
mLength = (TextView) findViewById(R.id.length);
mPlayPause = (ImageButton) findViewById(R.id.play_pause);
- mStop = (ImageButton) findViewById(R.id.stop);
mNext = (ImageButton) findViewById(R.id.next);
mPrevious = (ImageButton) findViewById(R.id.previous);
mShuffle = (ImageButton) findViewById(R.id.shuffle);
More information about the Android
mailing list