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

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

Merge branch 'readonly-p4-master'

parents 3c442861 f26c6617
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'))) {