Merge branch 'readonly-p4-master'
This commit is contained in:
committed by
The Android Open Source Project
commit
6bbccae9b3
@@ -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'))) {
|
||||
|
||||
Reference in New Issue
Block a user