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
ce3b03c9
Commit
ce3b03c9
authored
8 years ago
by
Dmitry Batkovich
Browse files
Options
Download
Email Patches
Plain Diff
javac ast indices: fix diagnostic for un-indexed classes
parent
4f0a5096
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/compiler/impl/src/com/intellij/compiler/backwardRefs/CompilerReferenceReader.java
+2
-2
...tellij/compiler/backwardRefs/CompilerReferenceReader.java
with
2 additions
and
2 deletions
+2
-2
java/compiler/impl/src/com/intellij/compiler/backwardRefs/CompilerReferenceReader.java
+
2
-
2
View file @
ce3b03c9
...
...
@@ -263,8 +263,8 @@ class CompilerReferenceReader {
});
if
(
result
[
0
]
==
DefCount
.
NONE
)
{
//diagnostic
String
baseHierarchyElement
=
getNameEnumerator
().
getName
(
def
.
getName
());
LOG
.
error
(
"Can't get definition files for: "
+
baseHierarchyElement
+
", class: "
+
def
.
getClass
());
String
name
=
def
instanceof
LightRef
.
LightAnonymousClassDef
?
String
.
valueOf
(
def
.
getName
())
:
getNameEnumerator
().
getName
(
def
.
getName
());
LOG
.
error
(
"Can't get definition files for: "
+
name
+
", class: "
+
def
.
getClass
());
}
return
result
[
0
]
==
DefCount
.
MANY
;
}
...
...
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