I noticed some odd code in the latest stable POI 3.8 jar (not trunk):
public void lockFormatCells()
{
createProtectionFieldIfNotPresent();
worksheet.getSheetProtection().setDeleteColumns(true);
}
Should it not be 'setFormatCells(true)' instead of
'setDeleteColumns(true)' ?
I checked bugzilla, but it may just be my not understanding it completely.
