return productCache;
productCache = new ProductDownloader();
productCache.setProp(getBuildProp());
FileUtil.deleteFiles(new File(prop.get("build.subproducts")));
FileUtil.copyFiles(new File(prop.get("actual.build.subproducts")), new File(prop.get("build.subproducts")),
new CopyFileFilter() {
public boolean shouldCopyFile(File file) {
return file.getPath().contains("3.4") && file.getName().endsWith(".zip");
}
});
return productCache;