stevedlawrence opened a new pull request #47: Correctly check if an element is required URL: https://github.com/apache/incubator-daffodil/pull/47 When determining what elements could appear after an element in an infoset for unparsing we need to determine if an element is optional of not to know if it's sibling could also appear next. We use a mixture of isOptional (for scalars) and isRequiredArrayElment (for arrays) to determine if an element was optional. This logic was actually not correct and has some edge cases it misses. Instead, we should just use the isRequired function, which has the correct logic for determine if an element could exist or not. DAFFODIL-1910
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
