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

Commit 580ae01c authored by Daniel Nishi's avatar Daniel Nishi
Browse files

Make PrivateStorageInfo have a public constructor.

This allows us to instatiate it as part of a loader, rather than just
relying directly on the StorageVolumeProvider builder.

Bug: 37175551
Test: Settings robotest
Change-Id: Id465703ecead5881ee9a38d69751ad44c3643b54
parent 567947d7
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;
    }