Skip to content

Commit 82b11be

Browse files
simplify jdbcTemplate call
1 parent 03eef16 commit 82b11be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqldev/src/main/java/org/utplsql/sqldev/dal/RealtimeReporterDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public void consumeReport(final String reporterId, final RealtimeReporterEventCo
121121
sb.append(" ? := l_reporter.get_lines_cursor();\n");
122122
sb.append("END;");
123123
final String plsql = sb.toString();
124-
jdbcTemplate.<Void>execute(plsql, new CallableStatementCallback<Void>() {
124+
jdbcTemplate.execute(plsql, new CallableStatementCallback<Void>() {
125125
@Override
126126
public Void doInCallableStatement(final CallableStatement cs) throws SQLException {
127127
cs.setString(1, reporterId);

0 commit comments

Comments
 (0)