Process the contents of the stream out into chunks
ArrayList chunksA = new ArrayList();
if(getPointer().getOffset() == 0x64b3) {
int i = 0;
i++;
}
int pos = 0;
byte[] contents = getStore().getContents();
while(pos < contents.length) {
Chunk chunk = chunkFactory.createChunk(contents, pos);
chunksA.add(chunk);
pos += chunk.getOnDiskSize();
}
chunks = (Chunk[])chunksA.toArray(new Chunk[chunksA.size()]);