Skip to content

Commit 9a43726

Browse files
committed
Fix new Sonar smell
1 parent e2d891a commit 9a43726

File tree

1 file changed

+1
-1
lines changed
  • spring-integration-jpa/src/main/java/org/springframework/integration/jpa/core

1 file changed

+1
-1
lines changed

spring-integration-jpa/src/main/java/org/springframework/integration/jpa/core/JpaExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ private Object executeOutboundJpaOperationOnPersistentMode(Message<?> message) {
451451
this.jpaOperations.persist(payload, this.flushSize, this.clearOnFlush);
452452
return payload;
453453
case MERGE:
454-
return this.jpaOperations.merge(payload, this.flushSize, this.clearOnFlush);
454+
return this.jpaOperations.merge(payload, this.flushSize, this.clearOnFlush); // NOSONAR
455455
case DELETE:
456456
this.jpaOperations.delete(payload);
457457
if (this.flush) {

0 commit comments

Comments
 (0)