Skip to content

Commit

Permalink
Next version
Browse files Browse the repository at this point in the history
  • Loading branch information
b3er committed Feb 17, 2022
1 parent 76cf829 commit 1e51da4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "com.github.b3er"
version = "0.31"
version = "0.32"

java {
toolchain {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ inline fun BasePsiNode<*>.processChildren(
val project = dir.project
val fileIndex = ProjectRootManager.getInstance(project).fileIndex
val module = fileIndex.getModuleForFile(dir.virtualFile)
val moduleFileIndex = if (module == null) null else ModuleRootManager.getInstance(
module
).fileIndex
val moduleFileIndex = if (module == null) null else ModuleRootManager.getInstance(module).fileIndex
processPsiDirectoryChildren(dir.children, children, moduleFileIndex, settings)
return children
}
Expand Down

0 comments on commit 1e51da4

Please sign in to comment.