PageRenderTime 32ms CodeModel.GetById 7ms RepoModel.GetById 0ms app.codeStats 0ms

/metadata/org.wordpress.android/list.patch

https://gitlab.com/valerio.bozzolan/fdroiddata
Patch | 22 lines | 19 code | 3 blank | 0 comment | 0 complexity | 6b725d13dccdc6a33c2b84c03269c123 MD5 | raw file
Possible License(s): AGPL-3.0, Apache-2.0
  1. diff --git a/src/org/xmlrpc/android/ApiHelper.java b/src/org/xmlrpc/android/ApiHelper.java
  2. index fcdd0b3..44e88a9 100644
  3. --- a/src/org/xmlrpc/android/ApiHelper.java
  4. +++ b/src/org/xmlrpc/android/ApiHelper.java
  5. @@ -144,7 +144,7 @@ public class ApiHelper {
  6. public void onSuccess();
  7. }
  8. - public static class GetPostFormatsTask extends HelperAsyncTask<List<?>, Void, Object> {
  9. + public static class GetPostFormatsTask extends HelperAsyncTask<java.util.List<?>, Void, Object> {
  10. private Blog mBlog;
  11. @Override
  12. @@ -409,7 +409,7 @@ public class ApiHelper {
  13. }
  14. }
  15. - public static class SyncMediaLibraryTask extends HelperAsyncTask<List<?>, Void, Integer> {
  16. + public static class SyncMediaLibraryTask extends HelperAsyncTask<java.util.List<?>, Void, Integer> {
  17. public interface Callback extends GenericErrorCallback {
  18. public void onSuccess(int results);
  19. }