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

Commit 323de93f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add toString() to Display.HDRCapabilities"

parents f0e0cdac 04c6a469
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -1525,5 +1525,14 @@ public final class Display {
        public int describeContents() {
            return 0;
        }

        @Override
        public String toString() {
            return "HdrCapabilities{"
                    + "mSupportedHdrTypes=" + Arrays.toString(mSupportedHdrTypes)
                    + ", mMaxLuminance=" + mMaxLuminance
                    + ", mMaxAverageLuminance=" + mMaxAverageLuminance
                    + ", mMinLuminance=" + mMinLuminance + '}';
        }
    }
}