This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 79e2d5895731 chore: proper line sonar setting
79e2d5895731 is described below
commit 79e2d5895731206a4f91d4d9c3cc0554b69ee04f
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Wed Dec 10 10:25:36 2025 +0100
chore: proper line sonar setting
---
.../main/java/org/apache/camel/dataformat/beanio/BeanIOIterator.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/components/camel-beanio/src/main/java/org/apache/camel/dataformat/beanio/BeanIOIterator.java
b/components/camel-beanio/src/main/java/org/apache/camel/dataformat/beanio/BeanIOIterator.java
index d570bc419fc1..6819b4ca67df 100644
---
a/components/camel-beanio/src/main/java/org/apache/camel/dataformat/beanio/BeanIOIterator.java
+++
b/components/camel-beanio/src/main/java/org/apache/camel/dataformat/beanio/BeanIOIterator.java
@@ -75,8 +75,8 @@ public class BeanIOIterator implements Iterator<Object>,
Closeable {
/**
* Sets a custom object as the next, such as from a custom error handler
*/
- public void setNext(Object next) {
+ public void setNext(Object next) { // NOSONAR
// NOTE: this is forcefully setting forceNext object on purpose.
- this.forceNext = next; // NOSONAR
+ this.forceNext = next;
}
}