Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ import scala.collection.mutable.{Set => MSet, Map => MMap}

import scala.annotation.tailrec

import org.objectweb.asm.{ClassReader, MethodVisitor, Type, ClassVisitor}
import org.objectweb.asm.Opcodes._
import com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.{ClassReader, MethodVisitor, Type, ClassVisitor}
import com.esotericsoftware.reflectasm.shaded.org.objectweb.asm.Opcodes._

/**
* Copied from Spark, written by Matei Zaharia ([email protected]).
Expand Down
5 changes: 1 addition & 4 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,7 @@ object ChillBuild extends Build {
settings = sharedSettings
).settings(
name := "chill",
previousArtifact := Some("com.twitter" % "chill_2.9.3" % "0.3.3"),
libraryDependencies ++= Seq(
"org.ow2.asm" % "asm-commons" % "4.0"
)
previousArtifact := Some("com.twitter" % "chill_2.9.3" % "0.3.3")
).dependsOn(chillJava)

def isScala210x(scalaVersion: String) = scalaVersion match {
Expand Down