Skip to content

Commit

Permalink
TYCHO-314 use ?**/* exclude all rule to tell JDT compiler to keep loo…
Browse files Browse the repository at this point in the history
…king for better match and fail with "Access restriction: not accessible" compile error only if no better match can be found.
  • Loading branch information
ifedorenko committed Nov 30, 2009
1 parent 7afb2f1 commit a41f0a6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ public class ClasspathComputer {
public static final String ACCESS_RULE_SEPARATOR = File.pathSeparator;

// public static final String INCLUDE_ALL_RULE = "**/*";
public static final String EXCLUDE_ALL_RULE = "-**/*";
public static final String EXCLUDE_ALL_RULE = "?**/*";

//@Required
private final BundleResolutionState bundleResolutionState;
Expand Down

0 comments on commit a41f0a6

Please sign in to comment.