Fixed build failures
This commit is contained in:
parent
c64ca81373
commit
da3df49089
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue