Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register

Changeset 4837

Show
Ignore:
Timestamp:
07/07/08 19:16:28 (6 months ago)
Author:
jegg
Message:

in patientmatching module, fixed bug when array was initialized with wrong size

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs-modules/patientmatching/src/org/regenstrief/linkage/analysis/RandomSampleAnalyzer.java

    r4757 r4837  
    6262                 
    6363                sampleSize = mc.getRandomSampleSize(); 
    64                 sample1 = new boolean[sampleSize]; 
    65                 sample2 = new boolean[sampleSize]; 
     64                sample1 = new boolean[recordPairCount]; 
     65                sample2 = new boolean[recordPairCount]; 
    6666                 
    6767                setIndexPairs(recordPairCount);