diff --git a/src/funcheck/Extractors.scala b/src/funcheck/Extractors.scala
index 30cf4d43cba7104e764bc57687689c229b43f51f..ff7791bae9c595e462da725b571bd8110da0ea22 100644
--- a/src/funcheck/Extractors.scala
+++ b/src/funcheck/Extractors.scala
@@ -321,13 +321,6 @@ trait Extractors {
       }
     }
 
-//     object ExAnonymousFunctionInvocation {
-//       def unapply(tree: Apply): Option[(Ident,List[Tree])] = tree match {
-//         case a @ Apply(Select(i @ Ident(_), applyName), args) if applyName.toString == "apply" => Some((i, args))
-//         case _ => None
-//       }
-//     }
-// 
     // used for case classes selectors.
     object ExParameterlessMethodCall {
       def unapply(tree: Select): Option[(Tree,Name)] = tree match {