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

Commit 71a17a43 authored by Daniel Nishi's avatar Daniel Nishi Committed by Android (Google) Code Review
Browse files

Merge "Make PrivateStorageInfo have a public constructor." into oc-dev

parents da3dd7c0 580ae01c
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;
    }