> +package org.apache.camel.util;
> +
> +import java.nio.ByteBuffer;
> +import java.nio.CharBuffer;
> +import java.nio.charset.CharacterCodingException;
> +import java.util.BitSet;
> +
> +import sun.nio.cs.ThreadLocalCoders;
> +import sun.text.Normalizer;
> +
> +public class UnsafeUriCharactersEncoder {I notice that UnsafeUriCharactersEncoder.java imports sun packages outside the standard JDK. Is it why the name "Unsafe"? :-)
