Skip to content

Commit

Permalink
#30 cleanup, inlining for easier reading. checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
doom369 committed Sep 5, 2019
1 parent 0488572 commit 2e355dc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@ public void setObject(int parameterIndex, Object x) throws SQLException {
if (x != null) {
String bind = ClickHouseValueFormatter.formatObject(x, dateTimeZone, dateTimeTimeZone);
boolean needQuoting = ClickHouseValueFormatter.needsQuoting(x);
ClickHousePreparedStatementParameter bindParam = new ClickHousePreparedStatementParameter(bind,needQuoting);
ClickHousePreparedStatementParameter bindParam =
new ClickHousePreparedStatementParameter(bind, needQuoting);
setBind(parameterIndex, bindParam);
} else {
setNull(parameterIndex);
Expand Down

0 comments on commit 2e355dc

Please sign in to comment.