NIHVIVO-3523 Add convenience constructors to ArrayIdentifierBundle
This commit is contained in:
parent
9d55acb2f3
commit
59f3cb6311
3 changed files with 14 additions and 9 deletions
|
@ -74,8 +74,7 @@ public class SelfEditingPolicyTest extends AbstractTestClass {
|
|||
IndividualImpl ind = new IndividualImpl();
|
||||
ind.setURI(SELFEDITOR_URI);
|
||||
|
||||
ids = new ArrayIdentifierBundle();
|
||||
ids.add(new HasProfile(SELFEDITOR_URI));
|
||||
ids = new ArrayIdentifierBundle(new HasProfile(SELFEDITOR_URI));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
@ -94,8 +94,7 @@ public class SelfEditingPolicy_2_Test extends AbstractTestClass {
|
|||
seIndividual = new IndividualImpl();
|
||||
seIndividual.setURI(SELFEDITOR_URI);
|
||||
|
||||
ids = new ArrayIdentifierBundle();
|
||||
ids.add(new HasProfile(SELFEDITOR_URI));
|
||||
ids = new ArrayIdentifierBundle(new HasProfile(SELFEDITOR_URI));
|
||||
|
||||
// setLoggerLevel(SelfEditingPolicySetupTest.class, Level.DEBUG);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue