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

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

AI 144002: am: CL 144001 Fix tiny bug in Rfc822Token.java

  Original author: takaoka
  Merged from: //branches/cupcake/...

Automated import of CL 144002
parent c6c318df
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'))) {