We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2664af8 commit d609842Copy full SHA for d609842
1 file changed
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/CreateReferenceLibraryTask.java
@@ -69,6 +69,8 @@
69
import java.util.Map;
70
import java.util.Set;
71
72
+import static org.labkey.api.exp.api.ExperimentService.asInteger;
73
+
74
/**
75
* User: bbimber
76
* Date: 8/6/12
@@ -204,7 +206,7 @@ public RecordedActionSet run() throws PipelineJobException
204
206
throw errors;
205
207
}
208
libraryRow = new CaseInsensitiveHashMap<>(inserted.get(0));
- rowId = (Integer) libraryRow.get("rowid");
209
+ rowId = asInteger(libraryRow.get("rowid"));
210
211
else
212
{
0 commit comments