Skip to content
Snippets Groups Projects
Commit 69b8b7e1 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Clean code

parent a596580c
No related branches found
No related tags found
No related merge requests found
package org.videolan.vlc.gui.video;
import android.os.Message;
import android.util.Log;
import org.videolan.vlc.media.MediaLibrary;
import org.videolan.vlc.media.MediaWrapper;
......@@ -10,7 +9,6 @@ import org.videolan.vlc.util.WeakHandler;
public class VideoListHandler extends WeakHandler<IVideoBrowser> {
public static final int UPDATE_ITEM = 0;
public static final int MEDIA_ITEMS_UPDATED = 100;
public VideoListHandler(IVideoBrowser owner) {
super(owner);
......@@ -26,7 +24,6 @@ public class VideoListHandler extends WeakHandler<IVideoBrowser> {
owner.updateItem((MediaWrapper)msg.obj);
break;
case MediaLibrary.MEDIA_ITEMS_UPDATED:
Log.d("load", "MEDIA_ITEMS_UPDATED");
owner.updateList();
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment