@@ -54,7 +54,7 @@ public class ArrayConverters {
5454
5555 // -- Integer array converters --
5656
57- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
57+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
5858 public static class IntArrayWrapper extends
5959 PrimitiveArrayWrapper <int [], Integer , IntArray >
6060 {
@@ -70,7 +70,7 @@ public Class<int[]> getInputType() {
7070 }
7171 }
7272
73- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
73+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
7474 public static class IntArrayUnwrapper extends
7575 PrimitiveArrayUnwrapper <int [], Integer , IntArray >
7676 {
@@ -88,7 +88,7 @@ public Class<IntArray> getInputType() {
8888
8989 // -- Byte array converters --
9090
91- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
91+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
9292 public static class ByteArrayWrapper extends
9393 PrimitiveArrayWrapper <byte [], Byte , ByteArray >
9494 {
@@ -104,7 +104,7 @@ public Class<byte[]> getInputType() {
104104 }
105105 }
106106
107- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
107+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
108108 public static class ByteArrayUnwrapper extends
109109 PrimitiveArrayUnwrapper <byte [], Byte , ByteArray >
110110 {
@@ -122,7 +122,7 @@ public Class<ByteArray> getInputType() {
122122
123123 // -- Bool array converters --
124124
125- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
125+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
126126 public static class BoolArrayWrapper extends
127127 PrimitiveArrayWrapper <boolean [], Boolean , BoolArray >
128128 {
@@ -138,7 +138,7 @@ public Class<boolean[]> getInputType() {
138138 }
139139 }
140140
141- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
141+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
142142 public static class BoolArrayUnwrapper extends
143143 PrimitiveArrayUnwrapper <boolean [], Boolean , BoolArray >
144144 {
@@ -156,7 +156,7 @@ public Class<BoolArray> getInputType() {
156156
157157 // -- Char array converters --
158158
159- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
159+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
160160 public static class CharArrayWrapper extends
161161 PrimitiveArrayWrapper <char [], Character , CharArray >
162162 {
@@ -172,7 +172,7 @@ public Class<char[]> getInputType() {
172172 }
173173 }
174174
175- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
175+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
176176 public static class CharArrayUnwrapper extends
177177 PrimitiveArrayUnwrapper <char [], Character , CharArray >
178178 {
@@ -190,7 +190,7 @@ public Class<CharArray> getInputType() {
190190
191191 // -- Short array converters --
192192
193- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
193+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
194194 public static class ShortArrayWrapper extends
195195 PrimitiveArrayWrapper <short [], Short , ShortArray >
196196 {
@@ -206,7 +206,7 @@ public Class<short[]> getInputType() {
206206 }
207207 }
208208
209- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
209+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
210210 public static class ShortArrayUnwrapper extends
211211 PrimitiveArrayUnwrapper <short [], Short , ShortArray >
212212 {
@@ -224,7 +224,7 @@ public Class<ShortArray> getInputType() {
224224
225225 // -- Float array converters --
226226
227- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
227+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
228228 public static class FloatArrayWrapper extends
229229 PrimitiveArrayWrapper <float [], Float , FloatArray >
230230 {
@@ -240,7 +240,7 @@ public Class<float[]> getInputType() {
240240 }
241241 }
242242
243- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
243+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
244244 public static class FloatArrayUnwrapper extends
245245 PrimitiveArrayUnwrapper <float [], Float , FloatArray >
246246 {
@@ -258,7 +258,7 @@ public Class<FloatArray> getInputType() {
258258
259259 // -- Double array converters --
260260
261- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
261+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
262262 public static class DoubleArrayWrapper extends
263263 PrimitiveArrayWrapper <double [], Double , DoubleArray >
264264 {
@@ -274,7 +274,7 @@ public Class<double[]> getInputType() {
274274 }
275275 }
276276
277- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
277+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
278278 public static class DoubleArrayUnwrapper extends
279279 PrimitiveArrayUnwrapper <double [], Double , DoubleArray >
280280 {
@@ -292,7 +292,7 @@ public Class<DoubleArray> getInputType() {
292292
293293 // -- Long array converters --
294294
295- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
295+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
296296 public static class LongArrayWrapper extends
297297 PrimitiveArrayWrapper <long [], Long , LongArray >
298298 {
@@ -308,7 +308,7 @@ public Class<long[]> getInputType() {
308308 }
309309 }
310310
311- @ Plugin (type = Converter .class , priority = Priority .HIGH_PRIORITY )
311+ @ Plugin (type = Converter .class , priority = Priority .HIGH )
312312 public static class LongArrayUnwrapper extends
313313 PrimitiveArrayUnwrapper <long [], Long , LongArray >
314314 {
0 commit comments