private String decode()

in src/main/java/org/apache/sling/jmx/provider/impl/JMXResourceProvider.java [396:403]


    private String decode(final String value) {
        try {
            return URLDecoder.decode(value, "UTF-8");
        } catch (final UnsupportedEncodingException uee) {
            // this should never happen, UTF-8 is always supported
            return value;
        }
    }