Skip to content

Commit

Permalink
Fix format from supporting language injection for field
Browse files Browse the repository at this point in the history
  • Loading branch information
KENNYSOFT committed Apr 12, 2023
1 parent 9a212c8 commit 5762b8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public void getLanguagesToInject(@NotNull MultiHostRegistrar registrar, @NotNull
else if ( resolved instanceof PsiParameter ) {
targetType = ( (PsiParameter) resolved ).getType();
}
else if ( resolved instanceof PsiField) {
else if ( resolved instanceof PsiField ) {
targetType = ( (PsiField) resolved ).getType();
}
}
Expand Down

0 comments on commit 5762b8d

Please sign in to comment.