|
|
@@ -1,8 +1,6 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.my.main;
|
|
|
|
|
|
|
|
|
-import android.util.Log;
|
|
|
-
|
|
|
import kr.co.zumo.app.R;
|
|
|
import kr.co.zumo.app.lifeplus.bean.ContentsDeliveryBean;
|
|
|
import kr.co.zumo.app.lifeplus.bean.api.LifeplusContentsBean;
|
|
|
@@ -271,12 +269,10 @@ public class MyMainPresenter extends Presenter<MyMainModel, IMyMainView> {
|
|
|
}
|
|
|
|
|
|
private void setDefaultBookmarkList() {
|
|
|
- Log.e("APP# MyMainPresenter | setDefaultBookmarkList", "|" + model.getDefaultBookmarkList());
|
|
|
view.setDefaultBookmarkList(model.getDefaultBookmarkList());
|
|
|
}
|
|
|
|
|
|
private void setMyBookmarkList() {
|
|
|
- Log.e("APP# MyMainPresenter | setMyBookmarkList", "|" + model.getMyBookmarkList());
|
|
|
view.setMyBookmarkList(model.getMyBookmarkList());
|
|
|
int len = model.getMyBookmarkSize();
|
|
|
|
|
|
@@ -287,7 +283,6 @@ public class MyMainPresenter extends Presenter<MyMainModel, IMyMainView> {
|
|
|
LifeplusContentsBean bean;
|
|
|
for (int i = 0; i < len; ++i) {
|
|
|
bean = model.getMyBookmarkList().get(i);
|
|
|
- Log.i("APP# MyMainPresenter | setMyBookmarkList", "|" + bean.toPrettyJson());
|
|
|
// 북마크의 좋아요(체크박스)
|
|
|
view.setBookmarkContentsLiked(i, bean.isLiked());
|
|
|
// 북마크의 북마크(체크박스)
|