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

Commit 310ea668 authored by Kweku Adams's avatar Kweku Adams Committed by Android (Google) Code Review
Browse files

Merge "Remove unnecessary null check."

parents cda01bf5 357eb2c2
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -4303,14 +4303,13 @@ public class JobSchedulerService extends com.android.server.SystemService

    int getStorageSeq() {
        synchronized (mLock) {
            return mStorageController != null ? mStorageController.getTracker().getSeq() : -1;
            return mStorageController.getTracker().getSeq();
        }
    }

    boolean getStorageNotLow() {
        synchronized (mLock) {
            return mStorageController != null
                    ? mStorageController.getTracker().isStorageNotLow() : false;
            return mStorageController.getTracker().isStorageNotLow();
        }
    }