Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
552c7927
Commit
552c7927
authored
6 years ago
by
Dmitry Batkovich
Browse files
Options
Download
Email Patches
Plain Diff
more logging
parent
fb07cbcb
Branches unavailable
Tags unavailable
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/java-analysis-impl/src/com/intellij/codeInspection/reference/RefFieldImpl.java
+2
-3
...c/com/intellij/codeInspection/reference/RefFieldImpl.java
with
2 additions
and
3 deletions
+2
-3
java/java-analysis-impl/src/com/intellij/codeInspection/reference/RefFieldImpl.java
+
2
-
3
View file @
552c7927
...
...
@@ -150,10 +150,9 @@ public class RefFieldImpl extends RefJavaElementImpl implements RefField {
return
ReadAction
.
compute
(()
->
{
UField
uField
=
getUastElement
();
LOG
.
info
(
"uast field for RefField = "
+
uField
);
LOG
.
info
(
"psi for RefField = "
+
getPsiElement
());
if
(
uField
==
null
)
return
null
;
PsiModifierListOwner
psi
=
(
PsiModifierListOwner
)
uField
.
getJavaPsi
();
LOG
.
info
(
"java field for RefField = "
+
psi
);
return
PsiFormatUtil
.
getExternalName
(
psi
);
return
PsiFormatUtil
.
getExternalName
((
PsiModifierListOwner
)
uField
.
getJavaPsi
());
});
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help