Skip to content

Commit

Permalink
fix: isException detection
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham committed Sep 13, 2024
1 parent c5a212d commit d89d081
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ object PsiClassUtils {
}

fun isException(psiClass: PsiClass): Boolean {
return psiClass.name!!.endsWith("com.github.catppuccin.jetbrains_icons.test.Exception")
return psiClass.name!!.endsWith("Exception")
}
}

0 comments on commit d89d081

Please sign in to comment.