mirror of https://github.com/M66B/FairEmail.git
Simplification
This commit is contained in:
parent
ed792c240b
commit
3fb7f4556d
|
@ -2427,7 +2427,7 @@ public class HtmlHelper {
|
||||||
else if (kar == '\u00A0')
|
else if (kar == '\u00A0')
|
||||||
ssb.replace(i, i + 1, "•");
|
ssb.replace(i, i + 1, "•");
|
||||||
else if (!Character.isLetterOrDigit(kar))
|
else if (!Character.isLetterOrDigit(kar))
|
||||||
ssb.replace(i, i + 1, "{" + Integer.toHexString((int) kar) + "}");
|
ssb.replace(i, i + 1, "{" + Integer.toHexString(kar) + "}");
|
||||||
}
|
}
|
||||||
|
|
||||||
Object[] spans = ssb.getSpans(0, ssb.length(), Object.class);
|
Object[] spans = ssb.getSpans(0, ssb.length(), Object.class);
|
||||||
|
|
Loading…
Reference in New Issue