diff options
author | aclement <aclement> | 2004-03-16 09:24:17 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-03-16 09:24:17 +0000 |
commit | cb2aaacf5c3fd4a745fd708c89feaab18435b0e0 (patch) | |
tree | 23597914033f16f59a3de81fec41d92f0318cd9d /tests/bugs/serialVersionUID/ITDMethod.aj | |
parent | e6894a62dae5857568da40762c4f6daa6111fdb3 (diff) | |
download | aspectj-cb2aaacf5c3fd4a745fd708c89feaab18435b0e0.tar.gz aspectj-cb2aaacf5c3fd4a745fd708c89feaab18435b0e0.zip |
Fix for Bugzilla Bug 41181
Support SerialVersionUID field if no new fields declared on class
(Regenerated with BcweaverJarMaker)
Diffstat (limited to 'tests/bugs/serialVersionUID/ITDMethod.aj')
-rw-r--r-- | tests/bugs/serialVersionUID/ITDMethod.aj | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs/serialVersionUID/ITDMethod.aj b/tests/bugs/serialVersionUID/ITDMethod.aj new file mode 100644 index 000000000..a7a635a1f --- /dev/null +++ b/tests/bugs/serialVersionUID/ITDMethod.aj @@ -0,0 +1,7 @@ +public aspect ITDMethod {
+
+ private void Test.voidMethod () {
+ System.out.println("? ITDMethod.voidMethod()");
+ }
+
+}
|