Description
Hi,
When creating a JarFileClassLoader with URLs built from File with spaces (using File#toURI().toURL(), so that the spaces are correctly handled up to the point we have an URL), then UrlResourceFinder#rebuildClassPath() will then transform these URLs back to File but will fail to transform them properly when they contains spaces.
I think the proper way to convert an URL to a File is to call new File(url.toURI()) and not simply new File(url.getPath)!