提交 6b6ae95a 编写于 作者: S serge-rider

NULL UUID edit fix

上级 2ec74d49
......@@ -47,6 +47,9 @@ public class UUIDValueManager extends BaseValueManager {
public Object extractEditorValue() throws DBCException {
Object strValue = super.extractEditorValue();
if (strValue instanceof String) {
if (((String) strValue).isEmpty()) {
return null;
}
try {
return UUID.fromString((String) strValue);
} catch (Exception e) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册