|
|
@@ -1,6 +1,5 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.my.bookmark;
|
|
|
|
|
|
-import android.content.Context;
|
|
|
import android.support.annotation.NonNull;
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
import android.view.LayoutInflater;
|
|
|
@@ -33,12 +32,10 @@ public class DefaultBookMarkAdapter extends RecyclerView.Adapter<DefaultBookMark
|
|
|
|
|
|
private IEventListener listener;
|
|
|
private List<BookmarkBean> defaultBookmarkBeans;
|
|
|
- private Context context;
|
|
|
|
|
|
- public DefaultBookMarkAdapter(Context context, List<BookmarkBean> defaultBookmarkBeans, IEventListener listener) {
|
|
|
+ public DefaultBookMarkAdapter(List<BookmarkBean> defaultBookmarkBeans, IEventListener listener) {
|
|
|
this.listener = listener;
|
|
|
this.defaultBookmarkBeans = defaultBookmarkBeans;
|
|
|
- this.context = context;
|
|
|
}
|
|
|
|
|
|
@NonNull
|