Merge pull request #476 from veyndan/super

Remove unnecessary super call
This commit is contained in:
Josephine Lim 2017-04-01 21:29:09 +10:00 committed by GitHub
commit 3f2882eda9
3 changed files with 0 additions and 3 deletions

View file

@ -23,7 +23,6 @@ public class TitleCategories extends AsyncTask<Void, Void, ArrayList<String>> {
private String title;
public TitleCategories(String title) {
super();
this.title = title;
}

View file

@ -226,7 +226,6 @@ public class Contribution extends Media {
}
public Contribution() {
super();
timestamp = new Date(System.currentTimeMillis());
}

View file

@ -30,7 +30,6 @@ public class ExistingFileAsync extends AsyncTask<Void, Void, Boolean> {
private Context context;
public ExistingFileAsync(String fileSHA1, Context context) {
super();
this.fileSHA1 = fileSHA1;
this.context = context;
}