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
@@ -184,6 +184,6 @@ public abstract class DeserializedMemberScope protected constructor(
}
private fun recordLookup(name: Name, from: LookupLocation) {
c.components.lookupTracker.record(from, c.containingDeclaration, this, name)
c.components.lookupTracker.record(from, c.containingDeclaration, name)
}
}