aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-01 14:59:31 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-05 20:08:30 +0200
commit68d12d3745e8e7f71d98d9101e9aaa348070c3b0 (patch)
tree4a66f8a532770d443f74a361eba0e4b26fae109b
parent5c68af8badf42954ad8eeedb7845d458eab50692 (diff)
downloaddotty-68d12d3745e8e7f71d98d9101e9aaa348070c3b0.tar.gz
dotty-68d12d3745e8e7f71d98d9101e9aaa348070c3b0.tar.bz2
dotty-68d12d3745e8e7f71d98d9101e9aaa348070c3b0.zip
Remove VCCompanionPrototype: it is not used.
-rw-r--r--src/dotty/runtime/vc/VCPrototype.scala4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dotty/runtime/vc/VCPrototype.scala b/src/dotty/runtime/vc/VCPrototype.scala
index 5b43e74f4..4ece214e9 100644
--- a/src/dotty/runtime/vc/VCPrototype.scala
+++ b/src/dotty/runtime/vc/VCPrototype.scala
@@ -3,10 +3,6 @@ package dotty.runtime.vc
abstract class VCPrototype {
}
-abstract class VCCompanionPrototype {
-
-}
-
abstract class VCArrayPrototype[T <: VCPrototype] {
def apply(idx: Int): Object
def update(idx: Int, el: T): Unit