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

Commit c21cf4a9 authored by Tadashi Takaoka's avatar Tadashi Takaoka Committed by The Android Open Source Project
Browse files

AI 144001: Fix tiny bug in Rfc822Token.java

  BUG=1751496

Automated import of CL 144001
parent 3192d4a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ public class Rfc822Token {
        for (int i = 0; i < len; i++) {
            char c = name.charAt(i);

            if (! ((c >= 'A' && i <= 'Z') ||
            if (! ((c >= 'A' && c <= 'Z') ||
                   (c >= 'a' && c <= 'z') ||
                   (c == ' ') ||
                   (c >= '0' && c <= '9'))) {