Springboot 2.0 upgrade
[so.git] / common / src / main / java / org / onap / so / client / graphinventory / entities / uri / parsers / UriParserSpringImpl.java
index aeaa923..b4cf8eb 100644 (file)
@@ -56,11 +56,7 @@ public class UriParserSpringImpl implements UriParser {
          final Map<String, String> result = new LinkedHashMap<>();
          
          for (Entry<String, String> entry : map.entrySet()) {
-                 try {
-                       result.put(entry.getKey(), UriUtils.decode(entry.getValue(), "UTF-8"));
-               } catch (UnsupportedEncodingException e) {
-                       result.put(entry.getKey(), "");
-               }
+               result.put(entry.getKey(), UriUtils.decode(entry.getValue(), "UTF-8"));         
          }
          
          return result;