Skip to content

Commit dd42e4f

Browse files
remove (Integer) casts
1 parent 902682c commit dd42e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/TaskFileManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ public void writeMetricsToDb(Map<Long, Long> readsetMap, Map<Long, Map<PipelineS
574574
toInsert.put("createdby", _job.getUser().getUserId());
575575
toInsert.put("created", new Date());
576576

577-
Integer readsetId = Integer.parseInt(line[0]);
577+
Long readsetId = Long.parseLong(line[0]);
578578
toInsert.put("readset", readsetId);
579579
if (readsetMap.containsKey(readsetId))
580580
{

0 commit comments

Comments
 (0)