summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-09-24 23:06:30 +0000
committerPaul Phillips <paulp@improving.org>2009-09-24 23:06:30 +0000
commitd17b40768ccb498e36464dd800ed5b602a7de372 (patch)
treeab923a2709e91831cae4f41012c752bd6597d0d4 /src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
parent67a8cdb404b54439abdce81790fdff147e073103 (diff)
downloadscala-d17b40768ccb498e36464dd800ed5b602a7de372.tar.gz
scala-d17b40768ccb498e36464dd800ed5b602a7de372.tar.bz2
scala-d17b40768ccb498e36464dd800ed5b602a7de372.zip
This patch represents breaking out bits of code...
This patch represents breaking out bits of code generation related to equality so that I can log what they're doing and easily alter them; to that end there is some code generation refactoring and a couple minor XML issues that came up.
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
index 25330bd641..904983a80f 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/ClassfileParser.scala
@@ -811,7 +811,7 @@ abstract class ClassfileParser {
}
def parseAnnotArg: Option[ClassfileAnnotArg] = {
- val tag = in.nextByte
+ val tag = in.nextByte.toChar
val index = in.nextChar
tag match {
case STRING_TAG =>