|
|
@@ -3,7 +3,6 @@
|
|
|
*/
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.category.type2;
|
|
|
|
|
|
-import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
|
|
|
import kr.co.zumo.app.lifeplus.bean.api.CategoryContentsBean;
|
|
|
@@ -53,15 +52,8 @@ public class SecondCategoryMainModel extends CategoryMainModel {
|
|
|
|
|
|
@Override
|
|
|
protected void modifyContents(List<CategoryContentsBean> contentsBeans) {
|
|
|
- // 5번 째 6번 째 데이터 교체
|
|
|
- int len = contentsBeans.size();
|
|
|
- int j;
|
|
|
- for (int i = 0; i < len; ++i) {
|
|
|
- if (i % 9 == 4) {
|
|
|
- j = (i / 9) * 9;
|
|
|
- Collections.swap(contentsBeans, 4 + j, 5 + j);
|
|
|
- }
|
|
|
- }
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
}
|