summaryrefslogtreecommitdiffstats
path: root/app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java')
-rw-r--r--app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java b/app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java
index c7f73626d..0eded47e7 100644
--- a/app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java
+++ b/app/src/main/java/app/fedilab/android/asynctasks/RetrieveOpenCollectiveAsyncTask.java
@@ -38,12 +38,12 @@ public class RetrieveOpenCollectiveAsyncTask extends AsyncTask<Void, Void, Void>
private WeakReference<Context> contextReference;
private Type type;
- public enum Type{
+ public enum Type {
BACKERS,
SPONSORS
}
- public RetrieveOpenCollectiveAsyncTask(Context context, Type type, OnRetrieveRemoteAccountInterface onRetrieveRemoteAccountInterface){
+ public RetrieveOpenCollectiveAsyncTask(Context context, Type type, OnRetrieveRemoteAccountInterface onRetrieveRemoteAccountInterface) {
this.type = type;
this.listener = onRetrieveRemoteAccountInterface;
this.contextReference = new WeakReference<>(context);