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:
parent
538b2d1377
commit
522b6d4a15
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user