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

Commit b5c39f45 authored by Kurt Partridge's avatar Kurt Partridge
Browse files

Rename a var to match semantics

The IS_INHIBITING_AUTO_UPLOAD flag is tested in isPossibleToUpload, so it inhibits all uploads, not
just automatic ones.  Renaming to IS_INHIBITING_UPLOAD.

Change-Id: Iceed79260d4b062147f40c09f0c5bb06b2519b1b
parent b5f67e7f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ public final class Uploader {
    private static final boolean DEBUG = false
            && ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS_DEBUG;
    // Set IS_INHIBITING_AUTO_UPLOAD to true for local testing
    private static final boolean IS_INHIBITING_AUTO_UPLOAD = false
    private static final boolean IS_INHIBITING_UPLOAD = false
            && ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS_DEBUG;
    private static final int BUF_SIZE = 1024 * 8;

@@ -76,7 +76,7 @@ public final class Uploader {
    }

    public boolean isPossibleToUpload() {
        return hasUploadingPermission() && mUrl != null && !IS_INHIBITING_AUTO_UPLOAD;
        return hasUploadingPermission() && mUrl != null && !IS_INHIBITING_UPLOAD;
    }

    private boolean hasUploadingPermission() {