Skip to content

Commit

Permalink
remove compatiblity trait for scala 2.11/2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
natansil committed Jul 7, 2017
1 parent d3b36c4 commit 08c7a7c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 25 deletions.
1 change: 0 additions & 1 deletion plugin/src/main/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ load("//scala:scala.bzl", "scala_library", "scala_library_for_plugin_bootstrappi
scala_library_for_plugin_bootstrapping(
name = "dependency_analyzer",
srcs = ["scala/io/github/retronym/dependencyanalyzer/DependencyAnalyzer.scala",
"scala_2_11/io/github/retronym/dependencyanalyzer/Compat.scala",
],
resources = ["resources/scalac-plugin.xml"],
visibility = ["//visibility:public"],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
package plugin.src.main.scala.io.github.retronym.dependencyanalyzer

import plugin.src.main.scala_2_11.io.github.retronym.dependencyanalyzer.Compat

import scala.reflect.io.AbstractFile
import scala.tools.nsc.plugins.{Plugin, PluginComponent}
import scala.tools.nsc.{Global, Phase}

class DependencyAnalyzer(val global: Global) extends Plugin with Compat {
class DependencyAnalyzer(val global: Global) extends Plugin {

val name = "dependency-analyzer"
val description =
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 08c7a7c

Please sign in to comment.