Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08577103 authored by David Luhmer's avatar David Luhmer
Browse files

fix lint issues

parent f229e541
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ import java.util.Map;

public class NextcloudRequest implements Serializable {

    private static final long serialVersionUID = 215521212534238L; //assign a long value
    private static final long serialVersionUID = 215521212534239L; //assign a long value

    private String method;
    private Map<String, List<String>> header = new HashMap<>();
@@ -36,7 +36,7 @@ public class NextcloudRequest implements Serializable {
    private String token;
    private String packageName;
    private String accountName;
    private boolean followRedirects = false;
    private boolean followRedirects;

    private NextcloudRequest() { }

@@ -92,7 +92,7 @@ public class NextcloudRequest implements Serializable {
        }

        /**
         * Default: true
         * Default value: true
         * @param followRedirects
         * @return
         */
@@ -146,7 +146,7 @@ public class NextcloudRequest implements Serializable {
        this.accountName = accountName;
    }

    public boolean getFollowRedirects() {
    public boolean isFollowRedirects() {
        return this.followRedirects;
    }