We can't short circuit traversal after all.

This commit is contained in:
David Maplesden 2019-09-17 15:40:46 +12:00 committed by James Agnew
parent c8c8ab6881
commit c2c07c95fc
1 changed files with 0 additions and 2 deletions

View File

@ -287,8 +287,6 @@ public abstract class BaseParser implements IParser {
protected void findBaseReferences(List<IBaseReference> allElements, IBase theElement, BaseRuntimeElementDefinition<?> theDefinition) {
if (theElement instanceof IBaseReference) {
allElements.add((IBaseReference) theElement);
// end traversal here, we recursively process nested resources later
return;
}
BaseRuntimeElementDefinition<?> def = theDefinition;