Changeset 5183 for openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/api/impl/PersonServiceImpl.java
- Timestamp:
- 08/06/08 17:17:55 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/api/impl/PersonServiceImpl.java
r4969 r5183 587 587 */ 588 588 public List<RelationshipType> getAllRelationshipTypes() throws APIException { 589 return getAllRelationshipTypes(true); 590 } 591 592 /** 593 * @see org.openmrs.api.PersonService#getAllRelationshipTypes(boolean) 594 */ 595 public List<RelationshipType> getAllRelationshipTypes(boolean includeRetired) 596 throws APIException { 597 return dao.getAllRelationshipTypes(includeRetired); 589 return dao.getAllRelationshipTypes(); 598 590 } 599 591