// make the dataSection for this chunk
dataSection = new Section(dataChunk.getOffset(), chunkSize);
if (debugIntersection)
System.out.println(" test intersecting: " + dataSection + " want: " + want);
if (dataSection.intersects(want)) // does it intersect ?
break;
}
if (debug)
System.out.println(" found intersecting dataSection: " + dataSection+" intersect= "+dataSection.intersect(want));