提交 4294d902 authored 作者: Jacek Ławrynowicz's avatar Jacek Ławrynowicz

SimpleResultSet: remove redundant null check

上级 7a2a5446
...@@ -606,8 +606,7 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData, ...@@ -606,8 +606,7 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData,
*/ */
@Override @Override
public Clob getClob(int columnIndex) throws SQLException { public Clob getClob(int columnIndex) throws SQLException {
Clob c = (Clob) get(columnIndex); return (Clob) get(columnIndex);
return c == null ? null : c;
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论