Skip to content

Commit fb3f189

Browse files
committed
[ci] Remove unused variable from internal method
1 parent 886461a commit fb3f189

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandler.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -764,8 +764,8 @@ private Object applyConstructorAutomapping(ResultSetWrapper rsw, ResultMap resul
764764
throws SQLException {
765765
boolean foundValues = false;
766766
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);
769769
} else {
770770
foundValues = applyColumnOrderBasedConstructorAutomapping(rsw, constructorArgTypes, constructorArgs, constructor,
771771
foundValues);
@@ -789,8 +789,8 @@ private boolean applyColumnOrderBasedConstructorAutomapping(ResultSetWrapper rsw
789789
}
790790

791791
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 {
794794
List<String> missingArgs = null;
795795
Parameter[] params = constructor.getParameters();
796796
for (Parameter param : params) {

0 commit comments

Comments
 (0)