mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Fixed warning
This commit is contained in:
parent
8a4c599d9e
commit
edcc48d8af
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue