@@ -764,8 +764,8 @@ private Object applyConstructorAutomapping(ResultSetWrapper rsw, ResultMap resul
764
764
throws SQLException {
765
765
boolean foundValues = false ;
766
766
if (configuration .isArgNameBasedConstructorAutoMapping ()) {
767
- foundValues = applyArgNameBasedConstructorAutoMapping (rsw , resultMap , columnPrefix , resultType ,
768
- constructorArgTypes , constructorArgs , constructor , foundValues );
767
+ foundValues = applyArgNameBasedConstructorAutoMapping (rsw , resultMap , columnPrefix , constructorArgTypes ,
768
+ constructorArgs , constructor , foundValues );
769
769
} else {
770
770
foundValues = applyColumnOrderBasedConstructorAutomapping (rsw , constructorArgTypes , constructorArgs , constructor ,
771
771
foundValues );
@@ -789,8 +789,8 @@ private boolean applyColumnOrderBasedConstructorAutomapping(ResultSetWrapper rsw
789
789
}
790
790
791
791
private boolean applyArgNameBasedConstructorAutoMapping (ResultSetWrapper rsw , ResultMap resultMap ,
792
- String columnPrefix , Class <?> resultType , List <Class <?>> constructorArgTypes , List <Object > constructorArgs ,
793
- Constructor <?> constructor , boolean foundValues ) throws SQLException {
792
+ String columnPrefix , List <Class <?>> constructorArgTypes , List <Object > constructorArgs , Constructor <?> constructor ,
793
+ boolean foundValues ) throws SQLException {
794
794
List <String > missingArgs = null ;
795
795
Parameter [] params = constructor .getParameters ();
796
796
for (Parameter param : params ) {
0 commit comments