aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-core/jamvm/jamvm/annotations.patch
blob: 6279366912863725a331f304843730c39224a4d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Index: git/src/classlib/gnuclasspath/annotations.c
===================================================================
--- git.orig/src/classlib/gnuclasspath/annotations.c	2013-07-29 10:44:38.597241346 +0000
+++ git/src/classlib/gnuclasspath/annotations.c	2013-07-29 11:03:42.927744962 +0000
@@ -247,7 +247,7 @@
     return anno;
 }
 
-Object *parseAnnotations(Class *class, AnnotationData *annotations) {
+Object *parseAnnotations(Class *class, AttributeData *annotations) {
     if(!anno_inited && !initAnnotation())
         return NULL;
 
@@ -290,7 +290,7 @@
 }
 
 Object *getMethodParameterAnnotations(MethodBlock *mb) {
-    AnnotationData *annotations;
+    AttributeData *annotations;
     Object **outer_array_data;
     Object *outer_array;
     int no_params, i;
@@ -342,7 +342,7 @@
 }
 
 Object *getMethodDefaultValue(MethodBlock *mb) {
-    AnnotationData *annotations;
+    AttributeData *annotations;
 
     if(!anno_inited && !initAnnotation())
         return NULL;