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

Commit 387e4a0d authored by David Luhmer's avatar David Luhmer
Browse files

remove unused variable

parent da299cb0
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ public class NextcloudRetrofitServiceMethod<T> {
    private @Nullable Headers headers;
    private Type returnType;
    private boolean followRedirects = false;
    private boolean formUrlEncoded = false;
    //private boolean formUrlEncoded = false;

    private final NextcloudRequest.Builder requestBuilder;

@@ -190,7 +190,8 @@ public class NextcloudRetrofitServiceMethod<T> {
            }
            headers = parseHeaders(headersToParse);
        } else if(annotation instanceof FormUrlEncoded) {
            formUrlEncoded = true;
            //formUrlEncoded = true;
            Log.v(TAG, "FormUrlEncoded request");
        } else if(annotation instanceof NextcloudAPI.FollowRedirects) {
            followRedirects = true;
        } else {