We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d0c6ccb + 5b329e8 commit 398bad0Copy full SHA for 398bad0
services/java/com/android/server/wm/DisplayContent.java
@@ -124,7 +124,9 @@ public void dump(PrintWriter pw) {
124
pw.print("-"); pw.print(mDisplayInfo.largestNominalAppWidth);
125
pw.print("x"); pw.println(mDisplayInfo.largestNominalAppHeight);
126
pw.print(" layoutNeeded="); pw.println(layoutNeeded);
127
- pw.print("magnificationSpec="); pw.println(mMagnificationSpec);
+ if (mMagnificationSpec != null) {
128
+ pw.print(" mMagnificationSpec="); pw.println(mMagnificationSpec);
129
+ }
130
pw.println();
131
}
132
0 commit comments