Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
04/22/08 18:44:35 (9 months ago)
Author:
bwolfe
Message:

Updating hl7 handler to propagate saves to obs groupings

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/api/org/openmrs/Encounter.java

    r3847 r3997  
    280280                if (obs == null) 
    281281                        obs = new HashSet<Obs>(); 
    282                 if (!obs.contains(observation) && observation != null) 
     282                if (observation != null) 
    283283                        obs.add(observation); 
    284284        }