mbeckerle commented on a change in pull request #12: Revised daffodil-io module 
to require passing in a FormatInfo object.
URL: https://github.com/apache/incubator-daffodil/pull/12#discussion_r157907787
 
 

 ##########
 File path: 
daffodil-runtime1/src/main/scala/edu/illinois/ncsa/daffodil/processors/parsers/BitOrderChange1.scala
 ##########
 @@ -30,29 +30,29 @@
  * SOFTWARE.
  */
 
-package edu.illinois.ncsa.daffodil.processors.parsers
-
-import edu.illinois.ncsa.daffodil.schema.annotation.props.gen.BitOrder
-import edu.illinois.ncsa.daffodil.processors.CheckBitOrderAndCharsetEv
-import edu.illinois.ncsa.daffodil.processors.CheckByteAndBitOrderEv
-import edu.illinois.ncsa.daffodil.processors.TermRuntimeData
-
-class BitOrderChangeParser(
-  val termRuntimeData: TermRuntimeData,
-  val bitOrder: BitOrder,
-  val checkByteAndBitOrder: CheckByteAndBitOrderEv,
-  val checkBitOrderAndCharset: CheckBitOrderAndCharsetEv)
-  extends PrimParser {
-
-  override def context = termRuntimeData
-
-  override lazy val runtimeDependencies = List(checkByteAndBitOrder, 
checkBitOrderAndCharset)
-
-  override def parse(pstate: PState): Unit = {
-        checkByteAndBitOrder(pstate)
-        checkBitOrderAndCharset(pstate)
-
-        termRuntimeData.schemaDefinitionUnless(pstate.bitPos1b % 8 == 1, "Can 
only change dfdl:bitOrder on a byte boundary")
-  }
-
-}
+//package edu.illinois.ncsa.daffodil.processors.parsers
 
 Review comment:
   Delete whole file.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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

Reply via email to