olabusayoT commented on code in PR #1455: URL: https://github.com/apache/daffodil/pull/1455#discussion_r1996009008
########## daffodil-core/src/main/scala/org/apache/daffodil/core/dsom/ComplexTypes.scala: ########## @@ -35,7 +35,7 @@ sealed abstract class ComplexTypeBase(xmlArg: Node, parentArg: SchemaComponent) final override def optUnion = None final override def typeNode = NodeInfo.Complex - override final def group = modelGroup + override final def group: ModelGroup = modelGroup Review Comment: It's a requirement, without it Scala 3 assumes group is a ModelGroupView and complains about it missing certain methods/fields. I could perhaps look into adding the method/field to ModelGroupView rather than adding the ModelGroup type? -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
