bug 58439: rename private FormulaShifter.adjustPtgDueToShiftMove to adjustPtgDueToSheetMove

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1710147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-10-23 08:56:49 +00:00
parent 538b2d1377
commit 522b6d4a15
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ public final class FormulaShifter {
case Row:
return adjustPtgDueToRowMove(ptg, currentExternSheetIx);
case Sheet:
return adjustPtgDueToShiftMove(ptg);
return adjustPtgDueToSheetMove(ptg);
default:
throw new IllegalStateException("Unsupported shift mode: " + _mode);
}
@ -205,7 +205,7 @@ public final class FormulaShifter {
return null;
}
private Ptg adjustPtgDueToShiftMove(Ptg ptg) {
private Ptg adjustPtgDueToSheetMove(Ptg ptg) {
Ptg updatedPtg = null;
if(ptg instanceof Ref3DPtg) {
Ref3DPtg ref = (Ref3DPtg)ptg;