Skip to content

Commit fadf293

Browse files
committed
Plate Hit: filter out preexisting hits match on Long
1 parent a07884e commit fadf293

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assay/src/org/labkey/assay/plate/PlateManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3176,7 +3176,7 @@ public void markHits(
31763176
SimpleFilter filter = new SimpleFilter(FieldKey.fromParts("ResultId"), rowIds, CompareType.IN);
31773177
filter.addCondition(FieldKey.fromParts("ProtocolId"), protocol.getRowId());
31783178

3179-
Set<Integer> preexistingHits = new HashSet<>(new TableSelector(hitTable, Collections.singleton("ResultId"), filter, null).getArrayList(Integer.class));
3179+
Set<Long> preexistingHits = new HashSet<>(new TableSelector(hitTable, Collections.singleton("ResultId"), filter, null).getArrayList(Long.class));
31803180
rowIds.removeAll(preexistingHits);
31813181
}
31823182

0 commit comments

Comments
 (0)