Skip to content

Instantly share code, notes, and snippets.

@denizmveli
Last active April 4, 2017 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save denizmveli/c5becb3c40edd592630067a408be3cf2 to your computer and use it in GitHub Desktop.
Save denizmveli/c5becb3c40edd592630067a408be3cf2 to your computer and use it in GitHub Desktop.
diff --git a/core/src/main/java/my/com/iflix/core/ui/category/CategoryMVP.java b/core/src/main/java/my/com/iflix/core/ui/category/CategoryMVP.java
index 08fc66e5c..d11b4d820 100644
--- a/core/src/main/java/my/com/iflix/core/ui/category/CategoryMVP.java
+++ b/core/src/main/java/my/com/iflix/core/ui/category/CategoryMVP.java
@@ -3,7 +3,6 @@ package my.com.iflix.core.ui.category;
import java.util.List;
import my.com.iflix.core.data.models.sportal_data.MediaElement;
-import my.com.iflix.core.ui.category.CategoryPresenter.Sort;
import my.com.iflix.core.ui.MvpStatefulPresenter;
import my.com.iflix.core.ui.MvpView;
@@ -26,8 +25,9 @@ public interface CategoryMVP {
void loadCategory(String categoryId);
- void setSort(@Sort int sort);
+ void setSort(@CategoryPresenter.Sort int sort);
- @Sort int getSort();
+ @CategoryPresenter.Sort
+ int getSort();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment