mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
inspection view: show default package name as '<default>' IDEA-162106
This commit is contained in:
+1
-1
@@ -370,7 +370,7 @@ public class RefJavaManagerImpl extends RefJavaManager {
|
||||
|
||||
private static void appendPackageElement(final Element element, final String packageName) {
|
||||
final Element packageElement = new Element("package");
|
||||
packageElement.addContent(packageName.isEmpty() ? InspectionsBundle.message("inspection.export.results.default") : packageName);
|
||||
packageElement.addContent(packageName.isEmpty() ? InspectionsBundle.message("inspection.reference.default.package") : packageName);
|
||||
element.addContent(packageElement);
|
||||
}
|
||||
|
||||
|
||||
@@ -25,7 +25,6 @@ inspection.export.results.problem.element.tag=problem_class
|
||||
inspection.export.results.can.be.final.description=Declaration can have final modifier
|
||||
|
||||
inspection.export.results.package=package
|
||||
inspection.export.results.default=<default>
|
||||
inspection.export.results.class=class
|
||||
inspection.export.results.constructor=constructor
|
||||
inspection.export.results.method=method
|
||||
@@ -227,7 +226,7 @@ inspection.raw.variable.type.can.be.generic.quickfix=Change type of {0} to {1}
|
||||
inspection.raw.variable.type.can.be.generic.family.quickfix=Add generic parameters to the type
|
||||
|
||||
inspection.reference.invalid=element no longer exists
|
||||
inspection.reference.default.package=default package
|
||||
inspection.reference.default.package=<default>
|
||||
inspection.reference.implicit.constructor.name=implicit constructor of {0}
|
||||
inspection.reference.noname=noname
|
||||
inspection.reference.anonymous.name=anonymous ({0})
|
||||
|
||||
Reference in New Issue
Block a user