mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-12-21 23:08:52 -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
|
||||
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;
|
||||
String calendarName = null, cleanerName = null;
|
||||
CompileTimeResultSetMapper.MaxRows maxRows = CompileTimeResultSetMapper.MaxRows.getMaxRows(sql.maxRows());
|
||||
|
Loading…
Reference in New Issue
Block a user