193: Update to 193.3793.14-EAP-SNAPSHOT

This commit is contained in:
Vyacheslav Gerasimov
2019-09-30 15:50:39 +03:00
parent 7e9cfbc91a
commit f38123e78c
8 changed files with 45 additions and 8 deletions
@@ -77,7 +77,7 @@ private class CanBeShortenedCache(project: Project) {
}
fun canBeShortened(symbol: JKClassSymbol): Boolean = canBeShortenedCache.getOrPut(symbol.name) {
!shortNameCache.processClassesWithName(symbol.name, Processor.FALSE, searchScope, null)
!shortNameCache.processClassesWithName(symbol.name, { false }, searchScope, null)
}
companion object {