提交 2b8637d0 编写于 作者: S serge-rider

NPE fix

上级 cb361a39
......@@ -251,6 +251,9 @@ public abstract class AbstractObjectCache<OWNER extends DBSObject, OBJECT extend
} else {
name = object.getName();
}
if (name == null) {
return null;
}
if (!caseSensitive) {
return name.toUpperCase();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册