This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch bindy-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 8eee20b8501c81a76de3ffbe4f910a51af3e4f30 Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Jun 28 10:00:52 2023 +0200 Camel-Bindy: Use isEmpty instead of comparing with empty String Signed-off-by: Andrea Cosentino <[email protected]> --- .../java/org/apache/camel/dataformat/bindy/BindyFixedLengthFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyFixedLengthFactory.java b/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyFixedLengthFactory.java index 6f0cff771e9..3c299eda3f5 100644 --- a/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyFixedLengthFactory.java +++ b/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/BindyFixedLengthFactory.java @@ -467,7 +467,7 @@ public class BindyFixedLengthFactory extends BindyAbstractFactory implements Bin fieldLength = Integer.parseInt(resultVals.get(0)); } - if (fieldLength <= 0 && datafield.delimiter().equals("") && datafield.lengthPos() == 0) { + if (fieldLength <= 0 && datafield.delimiter().isEmpty() && datafield.lengthPos() == 0) { throw new IllegalArgumentException( "Either a delimiter value or length for the field: " + field.getName() + " is mandatory.");
