This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 03b7e1b4689186030fcfe2aee28cb56e254b824f 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
