Skip to content

Commit

Permalink
chore: #82 ignore 'BREAK' item
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-HuyLe3a committed Sep 19, 2024
1 parent a966b05 commit 53b8bc4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,9 @@ public List<GovActionId> deserializeGovActionIdListResult(DataItem govActionsDI)

Array govActionsArray = (Array) govActionsDI;
for (DataItem item : govActionsArray.getDataItems()) {
if (item == SimpleValue.BREAK) {
continue;
}
govActionIds.add(deserializeGovActionIdResult(item));
}

Expand Down

0 comments on commit 53b8bc4

Please sign in to comment.