This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
     new b4912b17e60 Camel-Bindy: Use isEmpty instead of comparing with empty 
String
b4912b17e60 is described below

commit b4912b17e60c4118422df2b5767bf7be314a8f0f
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.");

Reply via email to