Remove redundant toList call in LazyJavaPackageScope

This commit is contained in:
Roman Golyshev
2019-11-11 16:01:23 +03:00
committed by Roman Golyshev
parent 82fb5c4d19
commit a18da68171
@@ -178,7 +178,7 @@ class LazyJavaPackageScope(
emptyList()
} else {
// we don't use implementation from super which caches all descriptors and does not use filters
allDescriptors().filter { it is ClassDescriptor && nameFilter(it.name) }.toList()
allDescriptors().filter { it is ClassDescriptor && nameFilter(it.name) }
}
}
}