Remove comments

This commit is contained in:
Cyrus 2020-12-01 09:46:05 -05:00
parent 9433c97dc9
commit a32d3a5f02
2 changed files with 3 additions and 19 deletions

View File

@ -204,21 +204,13 @@ public class SupplyChainValidationServiceImpl implements SupplyChainValidationSe
if (pc.isDeltaChain()) {
// this check validates the delta changes and re-compares
// the modified list to the original.
try {
attributeScv = validateDeltaPlatformCredentialAttributes(
pc, device.getDeviceInfo(),
baseCredential, deltaMapping);
} catch (Exception ex) {
for (StackTraceElement element : ex.getStackTrace()) {
LOGGER.error(element.toString());
}
LOGGER.error(ex.getMessage());
}
} else {
attributeScv = validatePlatformCredentialAttributes(
pc, device.getDeviceInfo(), ec);
}
if (platformScv != null) {
// have to make sure the attribute validation isn't ignored and
// doesn't override general validation status

View File

@ -810,17 +810,9 @@ public final class SupplyChainCredentialValidator implements CredentialValidator
ciV2 = (ComponentIdentifierV2) cId;
if (ciV2.getComponentClass().getClassValueString()
.contains(cInfo.getComponentClass())) {
// TDM RIGHT HERE, you are getting a # from componentclass
/**
* YOU CAN DO IT. Don't fall asleep -_-
*/
if (isMatch(cId, cInfo)) {
LOGGER.error("TDM - Removed items");
subCompIdList.remove(cId);
subCompInfoList.remove(cInfo);
} else {
// FUCK PMD
LOGGER.error("No match");
}
}
}