Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
08/06/08 17:17:55 (5 months ago)
Author:
mseaton
Message:

synchronization_bidirectional_branch: merge from [4734] to [5181].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/api/impl/PersonServiceImpl.java

    r4969 r5183  
    587587     */ 
    588588    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(); 
    598590    } 
    599591