Fix new Sonar smell

This commit is contained in:
Artem Bilan
2019-09-05 10:22:32 -04:00
parent e2d891a32d
commit 9a43726ca7

View File

@@ -451,7 +451,7 @@ public class JpaExecutor implements InitializingBean, BeanFactoryAware {
this.jpaOperations.persist(payload, this.flushSize, this.clearOnFlush);
return payload;
case MERGE:
return this.jpaOperations.merge(payload, this.flushSize, this.clearOnFlush);
return this.jpaOperations.merge(payload, this.flushSize, this.clearOnFlush); // NOSONAR
case DELETE:
this.jpaOperations.delete(payload);
if (this.flush) {