Merge pull request #2006 from retronym/topic/2.11-compat
Don't rely on Scala 2.10 compiler bug with inheritance, privates
This commit is contained in:
commit
d2e2987ccc
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ private[akka] object SubclassifiedIndex {
|
|||
* cache, e.g. HashMap, is faster than tree traversal which must use linear
|
||||
* scan at each level. Therefore, no value traversals are published.
|
||||
*/
|
||||
private[akka] class SubclassifiedIndex[K, V] private (private var values: Set[V])(implicit sc: Subclassification[K]) {
|
||||
private[akka] class SubclassifiedIndex[K, V] private (protected var values: Set[V])(implicit sc: Subclassification[K]) {
|
||||
|
||||
import SubclassifiedIndex._
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue