Description
One of the things that BasicURLNormalizer is to remove unnecessary dot segments in path.
Instead of implementing the logic ourselves with some antiquated regex library, we should simply use http://docs.oracle.com/javase/7/docs/api/java/net/URI.html#normalize() which does the same and is probably more efficient.