Browse Source

rename ambiguous variable name shifter -> formulaShifter

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814247 13f79535-47bb-0310-9956-ffa450edef68
pull/82/head
Javen O'Neal 6 years ago
parent
commit
59594b6030
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRow.java

+ 2
- 2
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFRow.java View File

@@ -626,8 +626,8 @@ public class XSSFRow implements Row, Comparable<XSSFRow> {
final int srcRowNum = srcRow.getRowNum();
final int destRowNum = getRowNum();
final int rowDifference = destRowNum - srcRowNum;
final FormulaShifter shifter = FormulaShifter.createForRowCopy(sheetIndex, sheetName, srcRowNum, srcRowNum, rowDifference, SpreadsheetVersion.EXCEL2007);
rowShifter.updateRowFormulas(this, shifter);
final FormulaShifter formulaShifter = FormulaShifter.createForRowCopy(sheetIndex, sheetName, srcRowNum, srcRowNum, rowDifference, SpreadsheetVersion.EXCEL2007);
rowShifter.updateRowFormulas(this, formulaShifter);

// Copy merged regions that are fully contained on the row
// FIXME: is this something that rowShifter could be doing?

Loading…
Cancel
Save