Remove unnecessary super call

This commit is contained in:
veyndan 2017-03-31 05:12:23 +01:00
parent 16553cc5e1
commit dc53ab9ff8
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;
}