Fix a typo
Change-Id: I27b925be030e9e6ee8ae49dc13f39accec996d7e
This commit is contained in:
parent
03d1dff38d
commit
c2653d0b5c
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue