Skip to content

Commit

Permalink
Remove debug printing around pickles in GenJVM
Browse files Browse the repository at this point in the history
  • Loading branch information
greedy committed Jul 21, 2011
1 parent 0b0034e commit 4eaadb1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/compiler/scala/tools/nsc/backend/jvm/GenJVM.scala
Expand Up @@ -200,7 +200,6 @@ abstract class GenJVM extends SubComponent with GenJVMUtil with GenAndroid with
def scalaSignatureAddingMarker(jclass: JClass, sym: Symbol): Option[AnnotationInfo] =
currentRun.symData get sym match {
case Some(pickle) if !jclass.getName().endsWith("$") =>
printf("JVM: FOUND pickle sym %s\n", sym)
val scalaAttr =
fjbgContext.JOtherAttribute(jclass, jclass, tpnme.ScalaSignatureATTR.toString,
versionPickle.bytes, versionPickle.writeIndex)
Expand All @@ -214,7 +213,6 @@ abstract class GenJVM extends SubComponent with GenJVMUtil with GenAndroid with
currentRun.symData -= sym.companionSymbol
Some(scalaAnnot)
case _ =>
printf("JVM: MISSING pickle sym %s\n", sym)
val markerAttr =
fjbgContext.JOtherAttribute(jclass, jclass, tpnme.ScalaATTR.toString, new Array[Byte](0), 0)
jclass addAttribute markerAttr
Expand Down

0 comments on commit 4eaadb1

Please sign in to comment.