]> source.dussan.org Git - poi.git/commitdiff
bug 58439: rename private FormulaShifter.adjustPtgDueToShiftMove to adjustPtgDueToShe...
authorJaven O'Neal <onealj@apache.org>
Fri, 23 Oct 2015 08:56:49 +0000 (08:56 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 23 Oct 2015 08:56:49 +0000 (08:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1710147 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ss/formula/FormulaShifter.java

index f74bf912026f933161f1a5d70c20f99a76d4788a..58f2e782a9c588f8253d0d87b0ac8d11ccb1041e 100644 (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;