Github user mbeckerle commented on a diff in the pull request:
https://github.com/apache/incubator-daffodil/pull/5#discussion_r150652871
--- Diff:
daffodil-core/src/main/scala/edu/illinois/ncsa/daffodil/dsom/GroupBase.scala ---
@@ -32,28 +32,26 @@
package edu.illinois.ncsa.daffodil.dsom
-import scala.xml.Node
-import scala.xml._
import edu.illinois.ncsa.daffodil.schema.annotation.props.AlignmentType
import
edu.illinois.ncsa.daffodil.schema.annotation.props.gen.AlignmentUnits
import java.lang.{ Integer => JInt }
-abstract class GroupBase(xmlArg: Node, parentArg: SchemaComponent,
position: Int)
- extends Term(xmlArg, parentArg, position) {
+trait GroupBase
--- End diff --
GroupBase class elminated, but postponing the renames ModelGroup and
ElementBase
---