Skip to content

Commit 257c138

Browse files
author
Steve Salas
committed
Merge dev/surface into master
2 parents 12c83bb + 3ae8636 commit 257c138

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

bytefrog/build.sbt

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ lazy val Instrumentation = (project in file("instrumentation"))
2929
withTesting,
3030

3131
libraryDependencies ++= Dependencies.asm,
32-
libraryDependencies += Dependencies.minlog,
33-
libraryDependencies += Dependencies.logback,
34-
libraryDependencies += Dependencies.slf4j
32+
libraryDependencies += Dependencies.minlog
3533
)
3634

3735
lazy val FilterInjector = (project in file("filter-injector"))
@@ -42,9 +40,7 @@ lazy val FilterInjector = (project in file("filter-injector"))
4240
javaWarnings,
4341

4442
libraryDependencies ++= Dependencies.asm,
45-
libraryDependencies += Dependencies.minlog,
46-
libraryDependencies += Dependencies.logback,
47-
libraryDependencies += Dependencies.slf4j
43+
libraryDependencies += Dependencies.minlog
4844
)
4945

5046
lazy val SourceMapParser = (project in file("sourcemap-parser"))
@@ -61,9 +57,7 @@ lazy val Util = (project in file("util"))
6157
withTesting,
6258

6359
libraryDependencies ++= Dependencies.asm,
64-
libraryDependencies += Dependencies.minlog,
65-
libraryDependencies += Dependencies.logback,
66-
libraryDependencies += Dependencies.slf4j
60+
libraryDependencies += Dependencies.minlog
6761
)
6862

6963
lazy val Stack = (project in file("."))

bytefrog/instrumentation/src/main/java/com/codedx/bytefrog/instrumentation/MethodInspector.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
import org.objectweb.asm.MethodVisitor;
2323
import org.objectweb.asm.Opcodes;
2424

25-
import java.util.BitSet;
26-
2725
/** Simple method visitor that collects source line information for a method (if available).
2826
*
2927
* @author robertf

bytefrog/project/Dependencies.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ object Dependencies {
1111
lazy val scalactic = "org.scalactic" %% "scalactic" % "3.0.4" % Test
1212
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.4" % Test
1313
lazy val scalaMock = "org.scalamock" %% "scalamock" % "4.0.0" % Test
14-
15-
lazy val logback = "ch.qos.logback" % "logback-classic" % "0.9.26" % "compile->default"
16-
lazy val slf4j = "org.slf4j" % "jcl-over-slf4j" % "1.6.4"
1714
}

0 commit comments

Comments
 (0)