VIVO-870 Create IndividualDao.getAllIndividualUris()
This replaces IndividualDao.getAllOfThisTypeIterator(). It returns the list that was created instead of the iterator. This would require a change to ObjectSourceIFace, but we get rid of it instead. Nobody was using it.
This commit is contained in:
parent
99c03ce49a
commit
0602406c53
6 changed files with 12 additions and 27 deletions
|
@ -130,9 +130,9 @@ public class IndividualDaoStub implements IndividualDao {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Iterator<String> getAllOfThisTypeIterator() {
|
||||
public Collection<String> getAllIndividualUris() {
|
||||
throw new RuntimeException(
|
||||
"IndividualDaoStub.getAllOfThisTypeIterator() not implemented.");
|
||||
"IndividualDaoStub.getAllIndividualUris() not implemented.");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue