提交 48a2b4f5 authored 作者: Thomas Mueller's avatar Thomas Mueller

NullPointerException in the parser.

上级 3309e088
......@@ -2669,10 +2669,11 @@ public class Parser {
}
private boolean equalsToken(String a, String b) {
if (a.equals(b)) {
if (a == null) {
return b == null;
} else if (a.equals(b)) {
return true;
}
if (!identifiersToUpper && a.equalsIgnoreCase(b)) {
} else if (!identifiersToUpper && a.equalsIgnoreCase(b)) {
return true;
}
return false;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论