summaryrefslogtreecommitdiff
path: root/src/interactive/scala/tools/nsc/interactive
diff options
context:
space:
mode:
authorFrançois Garillot <francois@garillot.net>2014-07-29 11:09:18 +0200
committerFrançois Garillot <francois@garillot.net>2014-09-09 13:02:42 +0200
commitf43e758a2d4584709ac587933882113b05cea825 (patch)
tree4e655530a3bd1b87aeb5eb0a21b8f60e806463e9 /src/interactive/scala/tools/nsc/interactive
parent52bf75a759fe4d29dc218bb6417bff9d8f455be6 (diff)
downloadscala-f43e758a2d4584709ac587933882113b05cea825.tar.gz
scala-f43e758a2d4584709ac587933882113b05cea825.tar.bz2
scala-f43e758a2d4584709ac587933882113b05cea825.zip
Removing deprecations
drive-by cleanups.
Diffstat (limited to 'src/interactive/scala/tools/nsc/interactive')
-rw-r--r--src/interactive/scala/tools/nsc/interactive/Global.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interactive/scala/tools/nsc/interactive/Global.scala b/src/interactive/scala/tools/nsc/interactive/Global.scala
index 174254d523..f50153e1e2 100644
--- a/src/interactive/scala/tools/nsc/interactive/Global.scala
+++ b/src/interactive/scala/tools/nsc/interactive/Global.scala
@@ -1091,7 +1091,7 @@ class Global(settings: Settings, _reporter: Reporter, projectName: String = "")
val implicitlyAdded = viaView != NoSymbol
members.add(sym, pre, implicitlyAdded) { (s, st) =>
new TypeMember(s, st,
- context.isAccessible(if (s.hasGetter) s.getter(s.owner) else s, pre, superAccess && !implicitlyAdded),
+ context.isAccessible(if (s.hasGetter) s.getterIn(s.owner) else s, pre, superAccess && !implicitlyAdded),
inherited,
viaView)
}