/*
* js source wasn't found, we must be in jar land, just let the files be accessed from there... however, we
* do want a hash. Question: hypothetically, could we have a hybrid with a subset of files as files, and the
* rest in jars? This wouldn't be accounted for here.
*/
tempGroup = new CompiledGroup(AuraJavascriptGroup.GROUP_NAME, AuraJavascriptGroup.FILE_NAME);
}
jsGroup = tempGroup;
// Aura Resources
FileGroup tempResourcesGroup;
try {
tempResourcesGroup = newAuraResourcesHashingGroup();
tempResourcesGroup.getGroupHash();
} catch (IOException e) {
tempResourcesGroup = new CompiledGroup(AuraResourcesHashingGroup.GROUP_NAME,
AuraResourcesHashingGroup.FILE_NAME);
}
resourcesGroup = tempResourcesGroup;
Properties props = (jsGroup == null) ? loadProperties() : null;