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_r301241245
########## File path: daffodil-core/src/main/scala/org/apache/daffodil/dsom/Term.scala ########## @@ -304,18 +306,18 @@ trait Term * We want to determine if we're in an unordered sequence * at any point along our parents. */ - final lazy val inUnorderedSequence: Boolean = - nearestEnclosingSequence match { - case None => { - false - } - case Some(s) => { - if (s.isOrdered) { - val result = s.inUnorderedSequence - result - } else true - } - } + // final lazy val inUnorderedSequence: Boolean = Review comment: Delete unused code. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services