Fixed 'IDEA-135314: Inner classes constructors calls decompiled incorrectly'

master
Stiver 10 years ago
parent c082dfba98
commit c3b4a23fdb
  1. 6
      src/org/jetbrains/java/decompiler/main/collectors/ImportCollector.java

@ -89,9 +89,13 @@ public class ImportCollector {
StructContext context = DecompilerContext.getStructContext();
// check for another class which could 'shadow' this one. Two cases:
// 1) class with the same short name in the current package
// 2) class with the same short name in the default package
boolean existsDefaultClass = (context.getClass(currentPackageSlash + nshort) != null
&& !npackage.equals(currentPackagePoint)) // current package
|| (context.getClass(nshort) != null); // default package
|| (context.getClass(nshort) != null
&& !currentPackagePoint.isEmpty()); // default package
if (existsDefaultClass ||
(mapSimpleNames.containsKey(nshort) && !npackage.equals(mapSimpleNames.get(nshort)))) {

Loading…
Cancel
Save