drop unused bitfield comment

This commit is contained in:
Mark Canlas 2020-08-26 01:41:56 -04:00
parent 81e85a720d
commit da9bd24368
3 changed files with 0 additions and 11 deletions

View File

@ -14,9 +14,4 @@ trait BitField[A] {
* ASM-safe label
*/
def label(x: A): String
/**
* Comment string
*/
def comment(x: A): String
}

View File

@ -188,9 +188,6 @@ object TestDirection {
def label(x: TestDirection): String =
x.toString.toLowerCase
def comment(x: TestDirection): String =
x.toString
}
implicit val mappingDirection: Mapping[TestDirection] =

View File

@ -14,9 +14,6 @@ object Direction {
def label(x: Direction): String =
"moving" + x.toString
def comment(x: Direction): String =
x.toString
}
}