aboutsummaryrefslogtreecommitdiff
path: root/library/src/scala/Projector.scala
diff options
context:
space:
mode:
Diffstat (limited to 'library/src/scala/Projector.scala')
-rw-r--r--library/src/scala/Projector.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/library/src/scala/Projector.scala b/library/src/scala/Projector.scala
deleted file mode 100644
index cff73f84d..000000000
--- a/library/src/scala/Projector.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-package scala
-import scala.reflect.ClassTag
-import scala.annotation.implicitNotFound
-
-@implicitNotFound("no projector instance found to implement reflective access to structural type ${T}")
-trait Projector[-T] extends Any {
- def get(receiver: T, name: String): Any
- def getMethod(receiver: T, name: String, paramClasses: ClassTag[_]*): Any =
- new UnsupportedOperationException("getMethod")
-}