mirror of
https://github.com/processing/processing4.git
synced 2026-01-30 03:41:15 +01:00
Refactoring had caused all the chaos. Fixes #3111.
This commit is contained in:
@@ -901,9 +901,9 @@ public class ASTGenerator {
|
||||
if (td.getStructuralProperty(TypeDeclaration.SUPERCLASS_TYPE_PROPERTY) != null) {
|
||||
SimpleType st = (SimpleType) td.getStructuralProperty(TypeDeclaration.SUPERCLASS_TYPE_PROPERTY);
|
||||
log("Superclass " + st.getName());
|
||||
ArrayList<CompletionCandidate> candidates =
|
||||
ArrayList<CompletionCandidate> tempCandidates =
|
||||
getMembersForType(st.getName().toString(), word2, noCompare, false);
|
||||
for (CompletionCandidate can : candidates) {
|
||||
for (CompletionCandidate can : tempCandidates) {
|
||||
candidates.add(can);
|
||||
}
|
||||
//findDeclaration(st.getName())
|
||||
|
||||
Reference in New Issue
Block a user