mbeckerle commented on a change in pull request #259: Incremental progress on
schema compilation space/speed issue.
URL: https://github.com/apache/incubator-daffodil/pull/259#discussion_r301234361
##########
File path:
daffodil-core/src/main/scala/org/apache/daffodil/dsom/ComplexTypes.scala
##########
@@ -70,20 +78,17 @@ abstract class ComplexTypeBase(xmlArg: Node, parentArg:
SchemaComponent)
}
case textNode: Text => None
case _: Comment => None
- case _ => {
- val g = ModelGroupFactory(xmlChild, this, 1, false)
- Some(g)
- }
+ case _ => Some(xmlChild)
}
}
}
- }.value
+ }
// provides needed polymorphism across unannotated complex types, and
// the annotated objects.
- lazy val localAndFormatRefProperties: Map[String, String] = {
- Map.empty[String, String]
- }
+ // lazy val localAndFormatRefProperties: Map[String, String] = {
Review comment:
Remove
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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