Skip to content

Commit

Permalink
Merge pull request #425 from eed3si9n/wip/repl
Browse files Browse the repository at this point in the history
Move REPL related xsbti Java classes to the correct module
  • Loading branch information
jvican committed Oct 10, 2017
2 parents 30c9bb4 + f2e2bf2 commit 291cefa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import Util._
import Dependencies._
import Scripted._
//import com.typesafe.tools.mima.core._, ProblemFilters._

def baseVersion = "1.1.0-SNAPSHOT"
def internalPath = file("internal")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# xsbti Java interfaces must be defined in the compiler interface, not the bridge.
# Bridge implementations are compiled per Zinc, so these are safe to change.
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleFactory")
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleResult")
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleInterface")
ProblemFilters.exclude[MissingClassProblem]("xsbti.InteractiveConsoleResponse")

0 comments on commit 291cefa

Please sign in to comment.