[FIR] Remove redundant ensure to status in FirPackageMemberScope

This commit is contained in:
Igor Yakovlev
2021-07-30 12:38:14 +02:00
committed by TeamCityServer
parent 9fdd3dc53f
commit c0949fbc18
@@ -50,7 +50,6 @@ class FirPackageMemberScope(
symbolProvider.getTopLevelFunctionSymbols(fqName, name)
}
for (symbol in symbols) {
symbol.ensureResolvedForCalls()
processor(symbol)
}
}
@@ -60,7 +59,6 @@ class FirPackageMemberScope(
symbolProvider.getTopLevelPropertySymbols(fqName, name)
}
for (symbol in symbols) {
symbol.ensureResolvedForCalls()
processor(symbol)
}
}