Skip to content

Commit

Permalink
NgapXerEncoder iE-Extensions ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
aligungr committed Sep 14, 2020
1 parent ceb50e2 commit 72b6cb1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,12 @@ private static <T extends NGAP_Value> NGAP_Value decode(NodeList nodes, Class<T>

for (int i = 0; i < nodes.getLength(); i++) {
var child = (Element) nodes.item(i);

// TODO: "iE-Extensions" is ignored for now. (used in at least MobilityRestrictionList)
if ("iE-Extensions".equals(child.getTagName())) {
continue;
}

var memberIndex = findMemberIndex(sequence, child.getTagName());
if (memberIndex == -1) {
throw new RuntimeException("invalid member name in sequence value");
Expand Down

0 comments on commit 72b6cb1

Please sign in to comment.