Example #1
0
 private long readUnsignedInt(RandomAccessFileOrArray stream) throws IOException {
   if (isBigEndian) {
     return stream.readUnsignedInt();
   } else {
     return stream.readUnsignedIntLE();
   }
 }