summaryrefslogtreecommitdiff
path: root/core/src/main/scala/forge/discover/Router.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/scala/forge/discover/Router.scala')
-rw-r--r--core/src/main/scala/forge/discover/Router.scala4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/src/main/scala/forge/discover/Router.scala b/core/src/main/scala/forge/discover/Router.scala
index a07cf678..3d054e29 100644
--- a/core/src/main/scala/forge/discover/Router.scala
+++ b/core/src/main/scala/forge/discover/Router.scala
@@ -382,14 +382,10 @@ class Router [C <: Context](val c: C) {
}
def getAllRoutesForClass(curCls: Type): Iterable[c.universe.Tree] = {
- pprint.log(curCls)
for{
t <- getValsOrMeths(curCls)
- _ = pprint.log(t)
- _ = pprint.log(t.annotations)
if t.annotations.exists(_.tpe =:= typeOf[Router.main])
} yield {
- println("Extract!")
extractMethod(t, curCls)
}
}