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

Commit be8db119 authored by Raph Levien's avatar Raph Levien Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in Html.inParagraph()" into mnc-dev

parents 9e540a51 8e71a397
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -278,7 +278,7 @@ public class Html {
                if (style[j] instanceof TypefaceSpan) {
                    String s = ((TypefaceSpan) style[j]).getFamily();

                    if (s.equals("monospace")) {
                    if ("monospace".equals(s)) {
                        out.append("<tt>");
                    }
                }