summaryrefslogtreecommitdiff
path: root/docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-12-10 11:14:46 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-12-10 11:14:46 -0800
commitf40541788957c257ee8b4035e0063a8a48945c11 (patch)
treedf574bd0aefe1e809fb890e42cdf2bf189659cfa /docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala
parent0c927046dc5df974e6c39187107cf3548825282b (diff)
parent27a38602decb891399fc9868b4dd7135f6e1ec2c (diff)
downloadscala-f40541788957c257ee8b4035e0063a8a48945c11.tar.gz
scala-f40541788957c257ee8b4035e0063a8a48945c11.tar.bz2
scala-f40541788957c257ee8b4035e0063a8a48945c11.zip
Merge pull request #3248 from adriaanm/dist-cleanup-licenses
Clean up Scala distribution a bit.
Diffstat (limited to 'docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala')
-rw-r--r--docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala b/docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala
deleted file mode 100644
index 6cd3472675..0000000000
--- a/docs/examples/plugintemplate/src/plugintemplate/TemplateAnnotationChecker.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-package plugintemplate
-
-import scala.tools.nsc.Global
-
-abstract class TemplateAnnotationChecker {
- val global: Global
- import global._
-
- object checker extends AnnotationChecker {
- def annotationsConform(tpe1: Type, tpe2: Type): Boolean = {
- println("checking: "+ tpe1 +" <: "+ tpe2)
- true
- }
-
- override def addAnnotations(tree: Tree, tpe: Type): Type = {
- println("adding annot to "+ tree.symbol)
- tpe
- }
- }
-}