Skip to content
Snippets Groups Projects
Commit c2653d0b authored by Jean Chalard's avatar Jean Chalard
Browse files

Fix a typo

Change-Id: I27b925be030e9e6ee8ae49dc13f39accec996d7e
parent 03d1dff3
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,7 @@ public class BinaryDictIOTests extends AndroidTestCase { ...@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment