mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Simplification
This commit is contained in:
parent
ed792c240b
commit
3fb7f4556d
1 changed files with 1 additions and 1 deletions
|
@ -2427,7 +2427,7 @@ public class HtmlHelper {
|
|||
else if (kar == '\u00A0')
|
||||
ssb.replace(i, i + 1, "•");
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue