Fixed build failures

This commit is contained in:
Nick Goupinets 2020-11-27 18:00:24 -05:00
parent c64ca81373
commit da3df49089
2 changed files with 6 additions and 1 deletions

View File

@ -148,4 +148,9 @@ public class CanonicalEID {
&& Objects.equals(otherEid.getValue(), this.getValue())
&& Objects.equals(otherEid.getUse(), this.getUse());
}
@Override
public int hashCode() {
return Objects.hash(mySystem, myValue, myUse);
}
}

View File

@ -261,7 +261,7 @@ public class GoldenResourceHelper {
String mdmSystem = myMdmSettings.getMdmRules().getEnterpriseEIDSystem();
String baseSystem = system.get().getValueAsString();
if (Objects.equals(baseSystem, mdmSystem)) {
ourLog.debug(String.format("Found EID confirming to MDM rules {}. It should not be copied, skipping", baseSystem));
ourLog.debug("Found EID confirming to MDM rules {}. It should not be copied, skipping", baseSystem);
continue;
}
}