You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/17 12:52:42 UTC

[camel] 03/03: (chores) camel-util: removed unused variables/assignments

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit a0ac77a86771e54f4d1ab22785737db792d215af
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Mon Apr 17 12:54:21 2023 +0200

    (chores) camel-util: removed unused variables/assignments
---
 core/camel-util/src/main/java/org/apache/camel/util/URISupport.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java b/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
index 9284d3b37ce..5c2ff276437 100644
--- a/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
+++ b/core/camel-util/src/main/java/org/apache/camel/util/URISupport.java
@@ -797,7 +797,6 @@ public final class URISupport {
     public static String buildMultiValueQuery(String key, Iterable<Object> values) {
         StringBuilder sb = new StringBuilder();
         for (Object v : values) {
-            String s = v.toString();
             if (sb.length() > 0) {
                 sb.append("&");
             }