Polishing

This commit is contained in:
Juergen Hoeller
2016-04-05 12:17:21 +02:00
parent 797f5dbba6
commit 6573e9142c
2 changed files with 6 additions and 7 deletions

View File

@@ -369,7 +369,7 @@ public abstract class StatementCreatorUtils {
ps.setBoolean(paramIndex, (Boolean) inValue);
}
else {
ps.setObject(paramIndex, inValue, Types.BOOLEAN);
ps.setObject(paramIndex, inValue, Types.BOOLEAN);
}
}
else if (sqlType == Types.DATE) {