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

Commit 596df40c authored by Daniel Nishi's avatar Daniel Nishi Committed by android-build-merger
Browse files

Merge "Make PrivateStorageInfo have a public constructor." into oc-dev am: 71a17a43

am: b03a1424

Change-Id: I29bab61979db7db4199a53aa144cb680e00f9bdf
parents fb5f5c0b b03a1424
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ public class PrivateStorageInfo {
    public final long freeBytes;
    public final long totalBytes;

    private PrivateStorageInfo(long freeBytes, long totalBytes) {
    public PrivateStorageInfo(long freeBytes, long totalBytes) {
        this.freeBytes = freeBytes;
        this.totalBytes = totalBytes;
    }