1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 09:47:13 +00:00

Fixed warning

This commit is contained in:
M66B 2019-03-10 08:12:13 +00:00
parent 8a4c599d9e
commit edcc48d8af

View file

@ -998,7 +998,7 @@ public class Helper {
// flag-keyword = atom // flag-keyword = atom
// atom = 1*ATOM-CHAR // atom = 1*ATOM-CHAR
// ATOM-CHAR = <any CHAR except atom-specials> // ATOM-CHAR = <any CHAR except atom-specials>
Character kar = keyword.charAt(i); char kar = keyword.charAt(i);
// atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards / quoted-specials / resp-specials // atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards / quoted-specials / resp-specials
if (kar == '(' || kar == ')' || kar == '{' || kar == ' ' || Character.isISOControl(kar)) if (kar == '(' || kar == ')' || kar == '{' || kar == ' ' || Character.isISOControl(kar))
continue; continue;