aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Clement <andrew.clement@gmail.com>2012-04-02 14:27:15 -0700
committerAndy Clement <andrew.clement@gmail.com>2012-04-02 14:27:15 -0700
commite0e08d764baff374fa8c3251b72c4e6aeb7699c4 (patch)
tree698e5697dc1b14b751adc608ba22a91566b6a99f
parent096b004fda4d21cca0e1ee4c776e5824715d0ecd (diff)
downloadaspectj-e0e08d764baff374fa8c3251b72c4e6aeb7699c4.tar.gz
aspectj-e0e08d764baff374fa8c3251b72c4e6aeb7699c4.zip
fixed up testcase field sigs
-rw-r--r--tests/bugs170/xmldefs/aop4.xml10
-rw-r--r--tests/bugs170/xmldefs/aop5.xml12
-rw-r--r--tests/bugs170/xmldefs/aop6a.xml2
3 files changed, 12 insertions, 12 deletions
diff --git a/tests/bugs170/xmldefs/aop4.xml b/tests/bugs170/xmldefs/aop4.xml
index 1cf61807b..a6633b032 100644
--- a/tests/bugs170/xmldefs/aop4.xml
+++ b/tests/bugs170/xmldefs/aop4.xml
@@ -2,11 +2,11 @@
<aspectj>
<aspects>
<concrete-aspect name="ConjuredUp">
- <declare-annotation field="* field1(..)" annotation="@AnnoString(&quot;set from xml&quot;)"/>
- <declare-annotation field="* field1(..)" annotation="@AnnoLong(999)"/>
- <declare-annotation field="* field1(..)" annotation="@AnnoBoolean(true)"/>
- <declare-annotation field="* field1(..)" annotation="@AnnoClass(Integer.class)"/>
- <declare-annotation field="* field2(..)" annotation="@AnnoClass()"/> <!-- testing empty paren -->
+ <declare-annotation field="* field1" annotation="@AnnoString(&quot;set from xml&quot;)"/>
+ <declare-annotation field="* field1" annotation="@AnnoLong(999)"/>
+ <declare-annotation field="* field1" annotation="@AnnoBoolean(true)"/>
+ <declare-annotation field="* field1" annotation="@AnnoClass(Integer.class)"/>
+ <declare-annotation field="* field2" annotation="@AnnoClass()"/> <!-- testing empty paren -->
</concrete-aspect>
</aspects>
diff --git a/tests/bugs170/xmldefs/aop5.xml b/tests/bugs170/xmldefs/aop5.xml
index 31a5f7d48..67f9b6eee 100644
--- a/tests/bugs170/xmldefs/aop5.xml
+++ b/tests/bugs170/xmldefs/aop5.xml
@@ -2,12 +2,12 @@
<aspectj>
<aspects>
<concrete-aspect name="ConjuredUp">
- <declare-annotation field="* field1(..)" annotation="@AnnoShort(8)"/>
- <declare-annotation field="* field1(..)" annotation="@AnnoChar('z')"/>
- <declare-annotation field="* field1(..)" annotation="@AnnoDouble(99.0d)"/>
- <declare-annotation field="* field1(..)" annotation="@AnnoFloat(6.0f)"/>
- <declare-annotation field="* field2(..)" annotation="@AnnoByte(88)"/>
- <declare-annotation field="* field2(..)" annotation="@AnnoInt(99)"/>
+ <declare-annotation field="* field1" annotation="@AnnoShort(8)"/>
+ <declare-annotation field="* field1" annotation="@AnnoChar('z')"/>
+ <declare-annotation field="* field1" annotation="@AnnoDouble(99.0d)"/>
+ <declare-annotation field="* field1" annotation="@AnnoFloat(6.0f)"/>
+ <declare-annotation field="* field2" annotation="@AnnoByte(88)"/>
+ <declare-annotation field="* field2" annotation="@AnnoInt(99)"/>
</concrete-aspect>
</aspects>
diff --git a/tests/bugs170/xmldefs/aop6a.xml b/tests/bugs170/xmldefs/aop6a.xml
index 2c6410a9b..99f070601 100644
--- a/tests/bugs170/xmldefs/aop6a.xml
+++ b/tests/bugs170/xmldefs/aop6a.xml
@@ -2,7 +2,7 @@
<aspectj>
<aspects>
<concrete-aspect name="ConjuredUp">
- <declare-annotation field="* field1(..)" annotation="@Annot( a= 'a' , fred = false, 'abc' )"/>
+ <declare-annotation field="* field1" annotation="@Annot( a= 'a' , fred = false, 'abc' )"/>
</concrete-aspect>
</aspects>