for(Iterator instructions = myWindow.instructions(true); instructions.hasNext();) {
SVNDiffInstruction instruction = (SVNDiffInstruction) instructions.next();
if (instruction.type != SVNDiffInstruction.COPY_FROM_SOURCE) {
myNextWindowInstructions = ensureBufferSize(myNextWindowInstructions, 10);
instruction.writeTo(myNextWindowInstructions);
if (instruction.type == SVNDiffInstruction.COPY_FROM_NEW_DATA) {
myNextWindowData = ensureBufferSize(myNextWindowData, instruction.length);
myWindow.writeNewData(myNextWindowData, instruction.offset, instruction.length);
}
} else {