[Android] Remove redundant calls
Geoffrey Métais
git at videolan.org
Fri Apr 10 10:28:44 CEST 2015
vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Thu Apr 9 13:09:05 2015 +0200| [167cfcc2cc7f3dfc1d0f5fa343711ad5e0feafec] | committer: Geoffrey Métais
Remove redundant calls
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=167cfcc2cc7f3dfc1d0f5fa343711ad5e0feafec
---
.../src/org/videolan/vlc/audio/AudioServiceController.java | 5 -----
1 file changed, 5 deletions(-)
diff --git a/vlc-android/src/org/videolan/vlc/audio/AudioServiceController.java b/vlc-android/src/org/videolan/vlc/audio/AudioServiceController.java
index df46551..6df5fba 100644
--- a/vlc-android/src/org/videolan/vlc/audio/AudioServiceController.java
+++ b/vlc-android/src/org/videolan/vlc/audio/AudioServiceController.java
@@ -353,21 +353,18 @@ public class AudioServiceController implements IAudioPlayerControl {
public void stop() {
remoteProcedureCall(mAudioServiceBinder, Void.class, (Void)null, "stop", null, null);
- updateAudioPlayer();
}
public void showWithoutParse(int u) {
remoteProcedureCall(mAudioServiceBinder, Void.class, (Void)null, "showWithoutParse",
new Class<?>[] { int.class },
new Object[] { u } );
- updateAudioPlayer();
}
public void playIndex(int i) {
remoteProcedureCall(mAudioServiceBinder, Void.class, (Void)null, "playIndex",
new Class<?>[] { int.class },
new Object[] { i } );
- updateAudioPlayer();
}
@Override
@@ -413,13 +410,11 @@ public class AudioServiceController implements IAudioPlayerControl {
@Override
public void pause() {
remoteProcedureCall(mAudioServiceBinder, Void.class, (Void)null, "pause", null, null);
- updateAudioPlayer();
}
@Override
public void play() {
remoteProcedureCall(mAudioServiceBinder, Void.class, (Void)null, "play", null, null);
- updateAudioPlayer();
}
@Override
More information about the Android
mailing list