mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-12-22 07:18:51 -05:00
Fix java8+ diamond operator
This commit is contained in:
parent
c2204b4635
commit
79625c08cd
@ -310,7 +310,7 @@ public class JdbcMapperProcessor extends AbstractProcessor {
|
|||||||
|
|
||||||
// build query and bind param order
|
// build query and bind param order
|
||||||
final List<VariableElement> bindParams = new ArrayList<VariableElement>();
|
final List<VariableElement> bindParams = new ArrayList<VariableElement>();
|
||||||
final Map<String, SpecialVariableElement> inListBindParams = new LinkedHashMap<>();
|
final Map<String, SpecialVariableElement> inListBindParams = new LinkedHashMap<String, SpecialVariableElement>();
|
||||||
final String sqlStatement;
|
final String sqlStatement;
|
||||||
String calendarName = null, cleanerName = null;
|
String calendarName = null, cleanerName = null;
|
||||||
CompileTimeResultSetMapper.MaxRows maxRows = CompileTimeResultSetMapper.MaxRows.getMaxRows(sql.maxRows());
|
CompileTimeResultSetMapper.MaxRows maxRows = CompileTimeResultSetMapper.MaxRows.getMaxRows(sql.maxRows());
|
||||||
|
Loading…
Reference in New Issue
Block a user