The DownloadService removeResource() fails to remove resources for versioned resources if the jnlp file specifies a wildcard version such as 1.0+
It breaks in ResourcesDesc.getResource(location, version) because it has the test: (vs.contains(jd.getVersion())
where jd.getVersion() is the wildcard spec, I think this should have been:
(jd.getVersion().contains(vs))
###@###.### 2005-1-31 20:47:54 GMT