Skip to content

Commit a3ca923

Browse files
committed
fix test
1 parent 8ea0cf1 commit a3ca923

File tree

1 file changed

+1
-1
lines changed
  • lsp/kotlin-core/src/main/java/org/appdevforall/codeonthego/lsp/kotlin/index

1 file changed

+1
-1
lines changed

lsp/kotlin-core/src/main/java/org/appdevforall/codeonthego/lsp/kotlin/index/ProjectIndex.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ProjectIndex : SymbolIndex {
7070

7171
fun findInProjectFiles(name: String): List<IndexedSymbol> {
7272
val results = mutableListOf<IndexedSymbol>()
73-
for (fgiveileIndex in fileIndexes.values) {
73+
for (fileIndex in fileIndexes.values) {
7474
results.addAll(fileIndex.findBySimpleName(name))
7575
}
7676
return results

0 commit comments

Comments
 (0)