1
1
/*
2
- * Copyright 2002-2024 the original author or authors.
2
+ * Copyright 2002-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -1234,7 +1234,7 @@ protected Map<String, Object> extractReturnedResults(CallableStatement cs,
1234
1234
int rsIndex = 0 ;
1235
1235
int updateIndex = 0 ;
1236
1236
boolean moreResults ;
1237
- if (!this . skipResultsProcessing ) {
1237
+ if (!isSkipResultsProcessing () ) {
1238
1238
do {
1239
1239
if (updateCount == -1 ) {
1240
1240
if (resultSetParameters != null && resultSetParameters .size () > rsIndex ) {
@@ -1243,7 +1243,7 @@ protected Map<String, Object> extractReturnedResults(CallableStatement cs,
1243
1243
rsIndex ++;
1244
1244
}
1245
1245
else {
1246
- if (!this . skipUndeclaredResults ) {
1246
+ if (!isSkipUndeclaredResults () ) {
1247
1247
String rsName = RETURN_RESULT_SET_PREFIX + (rsIndex + 1 );
1248
1248
SqlReturnResultSet undeclaredRsParam = new SqlReturnResultSet (rsName , getColumnMapRowMapper ());
1249
1249
if (logger .isTraceEnabled ()) {
@@ -1262,7 +1262,7 @@ protected Map<String, Object> extractReturnedResults(CallableStatement cs,
1262
1262
updateIndex ++;
1263
1263
}
1264
1264
else {
1265
- if (!this . skipUndeclaredResults ) {
1265
+ if (!isSkipUndeclaredResults () ) {
1266
1266
String undeclaredName = RETURN_UPDATE_COUNT_PREFIX + (updateIndex + 1 );
1267
1267
if (logger .isTraceEnabled ()) {
1268
1268
logger .trace ("Added default SqlReturnUpdateCount parameter named '" + undeclaredName + "'" );
0 commit comments