Skip to content

Commit

Permalink
fix test case call wrong method (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangtianyu authored Sep 4, 2024
1 parent 2305c4d commit 46cde69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private static Set<PsiClass> getClassRelatedClass(@NotNull PsiElement element) {
var fields = psiClass.getFields();

for (PsiMethod psiMethod : methods) {
result.addAll(getMethodParameterTypeClass(psiMethod));
result.addAll(getMethodRelatedClass(psiMethod));
}

for (PsiField psiField : fields) {
Expand Down

0 comments on commit 46cde69

Please sign in to comment.