Minor: remove unused parameter from LookupTracker.record

This commit is contained in:
Zalim Bashorov
2015-11-26 17:34:20 +03:00
parent 7faa886d26
commit d1c5bd4526
5 changed files with 8 additions and 7 deletions
@@ -361,6 +361,6 @@ public abstract class LazyJavaScope(protected val c: LazyJavaResolverContext) :
}
protected fun recordLookup(name: Name, from: LookupLocation) {
c.components.lookupTracker.record(from, ownerDescriptor, this, name)
c.components.lookupTracker.record(from, ownerDescriptor, name)
}
}