mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
ctrl-Q: also check for fqn when searching for existing exception tag (IDEA-64812)
This commit is contained in:
@@ -1308,7 +1308,7 @@ public class JavaDocInfoGenerator {
|
||||
if (valueElement != null) {
|
||||
for (Iterator<PsiClassType> iterator = declaredThrows.iterator(); iterator.hasNext();) {
|
||||
PsiClassType classType = iterator.next();
|
||||
if (Comparing.strEqual(valueElement.getText(), classType.getClassName())) {
|
||||
if (Comparing.strEqual(valueElement.getText(), classType.getClassName()) || Comparing.strEqual(valueElement.getText(), classType.getCanonicalText())) {
|
||||
iterator.remove();
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user