This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch bindy-3.20.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 91e5f4958e64f4d5ba139a6f9ba5315d2267859f 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 36d9a42a4a6..f2fc8ade4ed 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.");
