aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index 0f519493a..975c4d6f1 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -577,7 +577,7 @@ object SymDenotations {
extends SymDenotation(symbol, _owner, name, initFlags, initInfo, initPrivateWithin) {
import NameFilter._
- import util.LRU8Cache
+ import util.LRUCache
// ----- denotation fields and accessors ------------------------------
@@ -707,10 +707,10 @@ object SymDenotations {
_definedFingerPrint
}
- private[this] var _memberCache: LRU8Cache[Name, PreDenotation] = null
+ private[this] var _memberCache: LRUCache[Name, PreDenotation] = null
- private def memberCache: LRU8Cache[Name, PreDenotation] = {
- if (_memberCache == null) _memberCache = new LRU8Cache
+ private def memberCache: LRUCache[Name, PreDenotation] = {
+ if (_memberCache == null) _memberCache = new LRUCache
_memberCache
}