Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
06/04/08 15:08:04 (6 months ago)
Author:
bwolfe
Message:

Fixed ability to delete workflows via Manage Programs page - #366

Files:

Legend:

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

    r4358 r4552  
    109109         * @param patientsOrIds optional collection which may contain Patients, or patientIds which may be Integers, Strings, or anything whose toString() can be parsed to an Integer. 
    110110         */ 
    111         public Cohort(Collection patientsOrIds) { 
     111        @SuppressWarnings("unchecked") 
     112    public Cohort(Collection patientsOrIds) { 
    112113                 this(null, null, patientsOrIds); 
    113114        } 
     
    119120         * @param patientsOrIds optional collection which may contain Patients, or patientIds which may be Integers, Strings, or anything whose toString() can be parsed to an Integer. 
    120121         */ 
    121         public Cohort(String name, String description, Collection patientsOrIds) { 
     122        @SuppressWarnings("unchecked") 
     123    public Cohort(String name, String description, Collection patientsOrIds) { 
    122124                this.name = name; 
    123125                this.description = description;