This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 806bb6dc Fix some style issues (#4685) 806bb6dc is described below commit 806bb6dc4882548151bc4802a8585336c32d712b Author: Ruben Vargas Palma <ruben.vp8...@gmail.com> AuthorDate: Wed Nov 25 22:58:41 2020 -0600 Fix some style issues (#4685) Signed-off-by: Ruben Vargas <ruben.vp8...@gmail.com> --- .../org/apache/camel/component/salesforce/api/utils/UrlUtils.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/UrlUtils.java b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/UrlUtils.java index 4645259..556fe9e 100644 --- a/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/UrlUtils.java +++ b/components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/api/utils/UrlUtils.java @@ -20,7 +20,10 @@ import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; -public class UrlUtils { +public final class UrlUtils { + + private UrlUtils() { + } // Encode the URL up to the point of the query. Do not pass the query portion into this method. public static String encodePath(String path) throws UnsupportedEncodingException {