This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-4.10.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.10.x by this push:
new 3d7d99701cc CAMEL-21752: Regen
3d7d99701cc is described below
commit 3d7d99701cc3e9acbc746c1c082cfa41d5b57075
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Feb 17 16:14:07 2025 +0100
CAMEL-21752: Regen
---
.../src/main/java/org/apache/camel/component/smb/SmbOperations.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/components/camel-smb/src/main/java/org/apache/camel/component/smb/SmbOperations.java
b/components/camel-smb/src/main/java/org/apache/camel/component/smb/SmbOperations.java
index 20642747e5d..67281611a97 100644
---
a/components/camel-smb/src/main/java/org/apache/camel/component/smb/SmbOperations.java
+++
b/components/camel-smb/src/main/java/org/apache/camel/component/smb/SmbOperations.java
@@ -66,7 +66,8 @@ public class SmbOperations implements SmbFileOperations {
public SmbOperations(SmbConfiguration configuration) {
this.configuration = configuration;
- this.smbClient = configuration == null || configuration.getSmbConfig()
== null ? new SMBClient() : new SMBClient(configuration.getSmbConfig());
+ this.smbClient = configuration == null || configuration.getSmbConfig()
== null
+ ? new SMBClient() : new
SMBClient(configuration.getSmbConfig());
}
@Override