[#411] Changed assumption regarding Delta cert components with ADDED status.

This commit is contained in:
iadgovuser29 2021-10-27 14:14:09 -04:00
parent cf97b15b13
commit 867833dc9d

View File

@ -655,13 +655,7 @@ public final class SupplyChainCredentialValidator implements CredentialValidator
.getValue());
if (classFound) {
if (isMatch(ciV2, baseCiV2)) {
if (ciV2.isAdded()) {
// error
resultMessage.append("ADDED attempted with prior instance\n");
deltaSb.append(String.format("%s;", ci.hashCode()));
break;
}
if (ciV2.isModified()) {
if (ciV2.isAdded() || ciV2.isModified()) {
// since the base list doesn't have this ci
// just add the delta
baseCompList.add(deltaCi);