v0.8.0: fixed an error with new class bundle functionality
This commit is contained in:
parent
17ee80e058
commit
3dcd4ce216
|
@ -393,7 +393,7 @@ public class Bundle {
|
||||||
try {
|
try {
|
||||||
JSONArray jsonArray = new JSONArray();
|
JSONArray jsonArray = new JSONArray();
|
||||||
for (int i=0; i < array.length; i++) {
|
for (int i=0; i < array.length; i++) {
|
||||||
jsonArray.put( i, array[i].getCanonicalName() );
|
jsonArray.put( i, array[i].getName() );
|
||||||
}
|
}
|
||||||
data.put( key, jsonArray );
|
data.put( key, jsonArray );
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user