提交 eca3b715 编写于 作者: P prr

8160693: ScriptRunData.java uses bitwise AND instead of logical AND

Reviewed-by: flar
上级 399afb38
...@@ -44,7 +44,7 @@ public final class ScriptRunData { ...@@ -44,7 +44,7 @@ public final class ScriptRunData {
if (cp >= data[cache] && cp < data[cache+2]) { if (cp >= data[cache] && cp < data[cache+2]) {
return data[cache+1]; return data[cache+1];
} }
if (cp >= CHAR_START & cp < CHAR_LIMIT) { if ((cp >= CHAR_START) && (cp < CHAR_LIMIT)) {
int probe = dataPower; int probe = dataPower;
int index = 0; int index = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册