Skip to content

Commit

Permalink
[*] apply unit namespaces for FQNs with more than one level
Browse files Browse the repository at this point in the history
  • Loading branch information
casteng committed Nov 5, 2019
1 parent f209727 commit 8cd1d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/lang/references/resolve/FQNResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ private boolean checkForDottedUnitName(final boolean implAffects) {
res = tryUnit(fqn, sortedUnits);
if (res != null) {
return processScope(res, res.getName());
} else if (fqn.isTarget()) { // don't check with prefixes if fqn has more than one level
} else {
NamespaceRec oldFqn = new NamespaceRec(fqn);
for (String prefix : context.unitNamespaces) {
fqn.addPrefix(oldFqn, prefix);
Expand Down

0 comments on commit 8cd1d3a

Please sign in to comment.