Exemple #1
0
 private void readIntPool() throws IOException {
   int count = in.readVU30();
   if (count > 0) count--;
   int[] ints = new int[count];
   for (int i = 0; i < ints.length; i++) {
     ints[i] = in.readVS32();
   }
   abcFile.intPool(ints);
 }