Skip to content

Commit

Permalink
ALS-6511: Fix infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Aug 6, 2024
1 parent 75e2448 commit 068e987
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ private Map<Integer, List<String>> processColumn(TreeSet<Integer> patientIds, St
} else if(key == patientId){
String value = getResultField(cube, cubeValues, idPointer);
patientIdToValueMap.computeIfAbsent(patientId, k -> new ArrayList<>()).add(value);
idPointer++;
} else {
break;
}
Expand Down

0 comments on commit 068e987

Please sign in to comment.