Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
djcooke committed Feb 1, 2024
1 parent 54ec29e commit c5f5a1d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -751,10 +751,10 @@ private List<CaseRelease> parseReleases(JsonNode json) throws DataParseException
for (JsonNode node : json) {
list.add(new CaseRelease.Builder()
.deliverable(parseString(node, "deliverable", true))
.qcDate(parseDate(node, "release_qc_date"))
.qcPassed(parseQcPassed(node, "release_qc_state", false))
.qcUser(parseString(node, "release_qc_user"))
.qcNote(parseString(node, "release_qc_note"))
.qcDate(parseDate(node, "qc_date"))
.qcPassed(parseQcPassed(node, "qc_state", false))
.qcUser(parseString(node, "qc_user"))
.qcNote(parseString(node, "qc_note"))
.build());
}
return list;
Expand Down

0 comments on commit c5f5a1d

Please sign in to comment.