Skip to content

Commit 3f0c957

Browse files
authored
Merge branch 'main' into fix/ignore-specific-dao-method-parameters
2 parents 5a6defa + 2b8e055 commit 3f0c957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/domaframework/doma/intellij/extension/psi/PsiParameterExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fun PsiParameter.isIgnoreUsageCheck(): Boolean =
3333
DomaClassName.SELECT_OPTIONS -> {
3434
// Only ignore the exact SelectOptions class, not its subtypes
3535
val clazzType = this.typeElement?.type as? PsiClassType
36-
clazzType?.canonicalText == type.className
36+
clazzType?.rawType()?.canonicalText == type.className
3737
}
3838
else -> getSuperClassType(type) != null
3939
}

0 commit comments

Comments
 (0)