This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit a562cc4466d0c3bcc70808d1424b0e84e1b48211 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jul 8 11:18:23 2020 +0200 Camel-AWS2-S3: Fixed CS --- .../apache/camel/component/aws2/s3/AWS2S3Configuration.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java b/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java index 7831de8..f04ed12 100644 --- a/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java +++ b/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java @@ -525,17 +525,17 @@ public class AWS2S3Configuration implements Cloneable { } public boolean isTrustAllCertificates() { - return trustAllCertificates; - } + return trustAllCertificates; + } /** * If we want to trust all certificates in case of overriding the endpoint */ - public void setTrustAllCertificates(boolean trustAllCertificates) { - this.trustAllCertificates = trustAllCertificates; - } + public void setTrustAllCertificates(boolean trustAllCertificates) { + this.trustAllCertificates = trustAllCertificates; + } - public AWS2S3Configuration copy() { + public AWS2S3Configuration copy() { try { return (AWS2S3Configuration)super.clone(); } catch (CloneNotSupportedException e) {