We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea0cf1 commit a3ca923Copy full SHA for a3ca923
lsp/kotlin-core/src/main/java/org/appdevforall/codeonthego/lsp/kotlin/index/ProjectIndex.kt
@@ -70,7 +70,7 @@ class ProjectIndex : SymbolIndex {
70
71
fun findInProjectFiles(name: String): List<IndexedSymbol> {
72
val results = mutableListOf<IndexedSymbol>()
73
- for (fgiveileIndex in fileIndexes.values) {
+ for (fileIndex in fileIndexes.values) {
74
results.addAll(fileIndex.findBySimpleName(name))
75
}
76
return results
0 commit comments