Skip to content

Commit

Permalink
Fix earlier assertAttribute refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Sep 3, 2019
1 parent db41aa5 commit 8d2bd70
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Expand Up @@ -209,10 +209,6 @@ protected <T> void assertAttribute(PrismObject<ShadowType> shadow, String attrNa
assertAttribute(resource, shadow.asObjectable(), attrName, expectedValues);
}

protected <T> void assertAttribute(ShadowType shadow, QName attrName, T... expectedValues) {
assertAttribute(shadow, attrName, expectedValues);
}

protected ItemName getPrimaryIdentifierQName() {
return new ItemName(ResourceTypeUtil.getResourceNamespace(resourceType), OpenDJController.RESOURCE_OPENDJ_PRIMARY_IDENTIFIER_LOCAL_NAME);
}
Expand Down
Expand Up @@ -4156,9 +4156,4 @@ protected <T> void assertAttribute(ShadowType shadowType, String attrName, T...
protected <T> void assertAttribute(PrismObject<ShadowType> shadow, String attrName, T... expectedValues) {
assertAttribute(resourceTypeOpenDjrepo, shadow.asObjectable(), attrName, expectedValues);
}

protected <T> void assertAttribute(ShadowType shadowType, QName attrName, T... expectedValues) {
assertAttribute(shadowType, attrName, expectedValues);
}

}

0 comments on commit 8d2bd70

Please sign in to comment.