diff options
author | jhugunin <jhugunin> | 2003-01-08 02:16:12 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-01-08 02:16:12 +0000 |
commit | 8995a3a369a70a5d6122faee1f1783777c83b2ac (patch) | |
tree | 8affef726ed2cbf962186be42eaecbf292a9b538 /weaver | |
parent | 91d9045736aa5705ad0289c0209474bac205aab7 (diff) | |
download | aspectj-8995a3a369a70a5d6122faee1f1783777c83b2ac.tar.gz aspectj-8995a3a369a70a5d6122faee1f1783777c83b2ac.zip |
propogating information needed for decent Xlint warnings when privileged
access is made to a type not exposed to the weaver
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/Lint.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/weaver/src/org/aspectj/weaver/Lint.java b/weaver/src/org/aspectj/weaver/Lint.java index ce8850754..527dfa0fe 100644 --- a/weaver/src/org/aspectj/weaver/Lint.java +++ b/weaver/src/org/aspectj/weaver/Lint.java @@ -36,8 +36,7 @@ public class Lint { public final Kind typeNotExposedToWeaver = new Kind("typeNotExposedToWeaver", "this affected type is not exposed to the weaver: {0}"); - - + public Lint(World world) { this.world = world; } |