stagingStores.add(secondary);
}
public Md5Hash resolve(String specifier) {
for (CasStore casStore : primaryList) {
Md5Hash found = tryResolve(casStore, specifier);
if (found != null) {
return found;
}
}
for (CasStore casStore : secondaryList) {
Md5Hash found = tryResolve(casStore, specifier);
if (found != null) {
return found;
}
}