am 6223d823: am c2653d0b: Fix a typo

* commit '6223d82312d19afc5c0cbb10b3ece57f026cb723':
  Fix a typo
main
Jean Chalard 2013-04-17 19:46:59 -07:00 committed by Android Git Automerger
commit 9b7fefea1c
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public class BinaryDictIOTests extends AndroidTestCase {
final int candidateCodePoint = (int)(20 + r % (0x10FFFF - 20));
// Code points between 0xD800 and 0xDFFF are not valid.
if (candidateCodePoint >= 0xD800 && candidateCodePoint <= 0xDFFF) continue;
builder.appendCodePoint(candidadeCodePoint);
builder.appendCodePoint(candidateCodePoint);
--count;
}
return builder.toString();