1
0
Fork 0
mirror of https://github.com/vanitasvitae/Spherical synced 2025-09-12 19:59:41 +02:00

Add more logic and metadata object.

This commit is contained in:
vanitasvitae 2017-09-12 20:30:44 +02:00
parent 68d2695fae
commit c74c40dc7c
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
3 changed files with 98 additions and 18 deletions

View file

@ -108,7 +108,7 @@ public class SphereParser {
}
}
public static void append(ArrayList<Byte> list, byte[] array, int r) {
private static void append(ArrayList<Byte> list, byte[] array, int r) {
for (int i = 0; i < r; i++) {
list.add(array[i]);
}