Skip to content

Commit

Permalink
[DSC-1124] added missing check for empty collection
Browse files Browse the repository at this point in the history
  • Loading branch information
Micheleboychuk committed Jun 14, 2023
1 parent 4f4fe19 commit 3db6753
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,9 @@ public List<DCInputSet> getInputsByGroup(String formName)

// cache miss - construct new DCInputSet
List<List<Map<String, String>>> pages = formDefns.get(formName);
if (pages == null) {
return results;
}

Iterator<List<Map<String, String>>> iterator = pages.iterator();

Expand Down

0 comments on commit 3db6753

Please sign in to comment.