am c2653d0b: Fix a typo
* commit 'c2653d0b5c42290d8e7331617f0207c5a7537f67': Fix a typomain
commit
6223d82312
|
@ -140,7 +140,7 @@ public class BinaryDictIOTests extends AndroidTestCase {
|
||||||
final int candidateCodePoint = (int)(20 + r % (0x10FFFF - 20));
|
final int candidateCodePoint = (int)(20 + r % (0x10FFFF - 20));
|
||||||
// Code points between 0xD800 and 0xDFFF are not valid.
|
// Code points between 0xD800 and 0xDFFF are not valid.
|
||||||
if (candidateCodePoint >= 0xD800 && candidateCodePoint <= 0xDFFF) continue;
|
if (candidateCodePoint >= 0xD800 && candidateCodePoint <= 0xDFFF) continue;
|
||||||
builder.appendCodePoint(candidadeCodePoint);
|
builder.appendCodePoint(candidateCodePoint);
|
||||||
--count;
|
--count;
|
||||||
}
|
}
|
||||||
return builder.toString();
|
return builder.toString();
|
||||||
|
|
Loading…
Reference in New Issue