File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/main/kotlin/org/domaframework/doma/intellij/common/sql/directive Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import com.intellij.psi.PsiElement
2121import com.intellij.psi.PsiFile
2222import com.intellij.psi.PsiMethod
2323import org.domaframework.doma.intellij.common.dao.findDaoMethod
24- import org.domaframework.doma.intellij.common.psi.PsiTypeChecker
2524import org.domaframework.doma.intellij.extension.psi.searchParameter
2625
2726class LiteralDirectiveHandler (
@@ -39,9 +38,7 @@ class LiteralDirectiveHandler(
3938 ) { daoMethod, bind ->
4039 daoMethod
4140 ?.searchParameter(bind)
42- ?.filter {
43- PsiTypeChecker .isBaseClassType(it.type)
44- }?.map { param -> VariableLookupItem (param) }
41+ ?.map { param -> VariableLookupItem (param) }
4542 ?.toList()
4643 ? : emptyList()
4744 }
You can’t perform that action at this time.
0 commit comments