write for loop for performance and readability

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1721924 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-12-28 14:20:30 +00:00
parent ec73bc3e21
commit 356637f283
1 changed files with 2 additions and 4 deletions

View File

@ -1020,11 +1020,9 @@ public class TestXSSFCellStyle {
public static void copyStyles(Workbook reference, Workbook target) {
final short numberOfStyles = reference.getNumCellStyles();
for (short i = 0; i < numberOfStyles; i++) {
// don't copy default style (style index 0)
for (short i = 1; i < numberOfStyles; i++) {
final CellStyle referenceStyle = reference.getCellStyleAt(i);
if (i == 0) {
continue;
}
final CellStyle targetStyle = target.createCellStyle();
targetStyle.cloneStyleFrom(referenceStyle);
}