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.
1 parent 494ac35 commit 5b329e8Copy full SHA for 5b329e8
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