mirror of https://github.com/apache/poi.git
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
0b0e30c06c
commit
5de69c25e6
|
@ -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