diff options
author | acolyer <acolyer> | 2005-12-19 12:22:26 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-12-19 12:22:26 +0000 |
commit | 4676acbde531b3c00f5572ff4053435e9ba9b1eb (patch) | |
tree | 965cf14b15fe462f62de90df4091c311b40d0e3c /tests/java5/reflection | |
parent | bc1fcf9581621da51498b251f053b29fb70b9c05 (diff) | |
download | aspectj-4676acbde531b3c00f5572ff4053435e9ba9b1eb.tar.gz aspectj-4676acbde531b3c00f5572ff4053435e9ba9b1eb.zip |
merge of changes from 1.5.0 branch into HEAD
Diffstat (limited to 'tests/java5/reflection')
-rw-r--r-- | tests/java5/reflection/AtAspectJDeclareParents.aj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/java5/reflection/AtAspectJDeclareParents.aj b/tests/java5/reflection/AtAspectJDeclareParents.aj index d60f6a3c6..fddf12a56 100644 --- a/tests/java5/reflection/AtAspectJDeclareParents.aj +++ b/tests/java5/reflection/AtAspectJDeclareParents.aj @@ -2,8 +2,8 @@ import org.aspectj.lang.annotation.*; public aspect AtAspectJDeclareParents { - @DeclareParents("C") - public static I mixin = new Impl(); + @DeclareParents(value="C",defaultImpl=Impl.class) + private I implementedInterface; } |