Fix bug in super interface resolving

See:
 - a873fcf7ee (commitcomment-38607082)
 - https://www.pivotaltracker.com/n/projects/1346850
This commit is contained in:
Kris De Volder
2020-04-23 11:12:23 -07:00
parent 267b13fe33
commit 0f957ae4f0
2 changed files with 1 additions and 6 deletions

View File

@@ -20,14 +20,8 @@
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>

View File

@@ -509,6 +509,7 @@ public class JavaData {
resolved[i] = names[i];
}
}
return resolved;
}
return null;
}