[Android] Remove useless class
Geoffrey Métais
git at videolan.org
Tue Nov 10 19:01:02 CET 2015
vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Tue Nov 10 18:24:06 2015 +0100| [789b13027b34fc19c9bedc26afac612e40cb9a1a] | committer: Geoffrey Métais
Remove useless class
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=789b13027b34fc19c9bedc26afac612e40cb9a1a
---
.../src/org/videolan/vlc/PlaylistAdapter.java | 53 --------------------
1 file changed, 53 deletions(-)
diff --git a/vlc-android/src/org/videolan/vlc/PlaylistAdapter.java b/vlc-android/src/org/videolan/vlc/PlaylistAdapter.java
deleted file mode 100644
index 87c62ad..0000000
--- a/vlc-android/src/org/videolan/vlc/PlaylistAdapter.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * *************************************************************************
- * PlaylistAdapter.java
- * **************************************************************************
- * Copyright © 2015 VLC authors and VideoLAN
- * Author: Geoffrey Métais
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- * ***************************************************************************
- */
-
-package org.videolan.vlc;
-
-import android.support.v7.widget.RecyclerView;
-import android.view.View;
-import android.view.ViewGroup;
-
-public class PlaylistAdapter extends RecyclerView.Adapter<PlaylistAdapter.PlaylistViewHolder> {
-
- @Override
- public PlaylistViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
- return null;
- }
-
- @Override
- public int getItemCount() {
- return 0;
- }
-
- @Override
- public void onBindViewHolder(PlaylistViewHolder holder, int position) {
-
- }
-
- static class PlaylistViewHolder extends RecyclerView.ViewHolder {
-
- public PlaylistViewHolder(View itemView) {
- super(itemView);
- }
- }
-}
More information about the Android
mailing list