codacy: Document empty constructor

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2020-10-22 17:30:24 +02:00
parent d62c2b3f9f
commit 2251dde731
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B
11 changed files with 12 additions and 5 deletions

View file

@ -24,10 +24,10 @@ import com.google.gson.annotations.SerializedName;
import org.parceler.Parcel;
@Parcel
/*
* Push data from server, https://github.com/nextcloud/notifications/blob/master/docs/push-v2.md#encrypted-subject-data
*/
@Parcel
public class DecryptedPushMessage {
public String app;
public String type;
@ -49,6 +49,7 @@ public class DecryptedPushMessage {
}
public DecryptedPushMessage() {
// empty constructor
}
public String getApp() {

View file

@ -49,6 +49,7 @@ public class FileSystemDataSet {
}
public FileSystemDataSet() {
// empty constructor
}
public int getId() {

View file

@ -33,9 +33,6 @@ public class MediaFoldersModel {
this.videoMediaFolders = videoMediaFolders;
}
public MediaFoldersModel() {
}
public List<String> getImageMediaFolders() {
return this.imageMediaFolders;
}

View file

@ -38,6 +38,7 @@ public class PushConfigurationState {
}
public PushConfigurationState() {
// empty constructor for JSON parser
}
public String getPushToken() {

View file

@ -34,6 +34,7 @@ public class SignatureVerification {
}
public SignatureVerification() {
// empty constructor
}
public boolean isSignatureValid() {

View file

@ -36,6 +36,7 @@ public class Template {
public String extension;
public Template() {
// empty constructor
}
public Template(int id, String name, String thumbnailLink, Type type, String extension) {

View file

@ -29,7 +29,7 @@ public class StoragePoint implements Comparable<StoragePoint> {
private String path;
private StorageType storageType;
private PrivacyType privacyType;
public StoragePoint(String description, String path, StorageType storageType, PrivacyType privacyType) {
this.description = description;
this.path = path;
@ -38,6 +38,7 @@ public class StoragePoint implements Comparable<StoragePoint> {
}
public StoragePoint() {
// empty constructor
}
public String getDescription() {

View file

@ -85,6 +85,7 @@ public class SyncedFolderParcelable implements Parcelable {
}
public SyncedFolderParcelable() {
// empty constructor
}
@Override

View file

@ -37,6 +37,7 @@ public class SearchEvent {
}
public SearchEvent() {
// empty constructor to create empty object
}
public String getSearchQuery() {

View file

@ -32,6 +32,7 @@ public class SyncEventFinished {
}
public SyncEventFinished() {
// empty constructor
}
public Intent getIntent() {

View file

@ -34,6 +34,7 @@ public class SvgDecoder implements ResourceDecoder<InputStream, SVG> {
}
public SvgDecoder() {
// empty constructor
}
public Resource<SVG> decode(InputStream source, int w, int h) throws IOException {