diff options
author | aclement <aclement> | 2006-10-10 10:51:47 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-10 10:51:47 +0000 |
commit | f80ae0089b2a8f57653348b76ef1b7f89aebf2ef (patch) | |
tree | 87dfaf162b44a0e9993fdd1d90adb2a406ed1e82 /tests/java5 | |
parent | baf4958e10e998bf081c68ec047c5241f9d79c72 (diff) | |
download | aspectj-f80ae0089b2a8f57653348b76ef1b7f89aebf2ef.tar.gz aspectj-f80ae0089b2a8f57653348b76ef1b7f89aebf2ef.zip |
improved - hopefully get more info as to why currently failing on the build machine
Diffstat (limited to 'tests/java5')
-rw-r--r-- | tests/java5/pertypewithin/ajdk/AJDKExamples.aj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/java5/pertypewithin/ajdk/AJDKExamples.aj b/tests/java5/pertypewithin/ajdk/AJDKExamples.aj index a03c72643..e324c6f43 100644 --- a/tests/java5/pertypewithin/ajdk/AJDKExamples.aj +++ b/tests/java5/pertypewithin/ajdk/AJDKExamples.aj @@ -2,6 +2,9 @@ package org.xyz.foo; import java.util.*; public aspect AJDKExamples pertypewithin(org.xyz..* && !AJDKExamples) { + public AJDKExamples() { + System.out.println("Aspect instance constructed"); + } // use WeakHashMap for auto-garbage collection of keys private Map<Object,Boolean> instances = new WeakHashMap<Object,Boolean>(); |