This commit is contained in:
Looly
2020-01-10 18:01:32 +08:00
parent 7ef693efbf
commit f54852d64c
3 changed files with 8 additions and 2 deletions

View File

@@ -44,6 +44,6 @@ public class EntityListHandler implements RsHandler<List<Entity>>{
@Override
public List<Entity> handle(ResultSet rs) throws SQLException {
return HandleHelper.handleRs(rs, new ArrayList<Entity>(), this.caseInsensitive);
return HandleHelper.handleRs(rs, new ArrayList<>(), this.caseInsensitive);
}
}