key = "jar:" + jar.toURI().toURL().toString() + "!/";
} catch (MalformedURLException e) {
e.printStackTrace();
continue;
}
IRepositoryRoot root = repository.getRoots().get(key);
if (root == null) {
root = new JarRoot(repository, jar);
} else {
repository.removeRoot(key);
}
root.updateItems(force);
newRoots.put(key, root);
try {
URLJarCollector.closeJarURLConnection(jar.toURI().toURL());
} catch (MalformedURLException e) {