We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26ce65d commit a4746f7Copy full SHA for a4746f7
spring-integration-jpa/src/main/java/org/springframework/integration/jpa/core/JpaExecutor.java
@@ -432,7 +432,7 @@ public Object executeOutboundJpaOperation(final Message<?> message) {
432
433
ParameterSource parameterSource = null;
434
if (this.jpaQuery != null || this.nativeQuery != null || this.namedQuery != null) {
435
- parameterSource = this.determineParameterSource(message);
+ parameterSource = determineParameterSource(message);
436
}
437
if (this.jpaQuery != null) {
438
result = this.jpaOperations.executeUpdate(this.jpaQuery, parameterSource);
@@ -464,7 +464,7 @@ else if (this.namedQuery != null) {
464
465
466
467
- return result;
+ return result; // NOSONAR never null
468
469
470
0 commit comments