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

Commit 37360dd4 authored by Raph Levien's avatar Raph Levien Committed by Android Git Automerger
Browse files

am 8d736c1c: am be8db119: Merge "Fix NPE in Html.inParagraph()" into mnc-dev

* commit '8d736c1c':
  Fix NPE in Html.inParagraph()
parents ac032058 8d736c1c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -278,7 +278,7 @@ public class Html {
                if (style[j] instanceof TypefaceSpan) {
                if (style[j] instanceof TypefaceSpan) {
                    String s = ((TypefaceSpan) style[j]).getFamily();
                    String s = ((TypefaceSpan) style[j]).getFamily();


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