You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2015/10/23 10:56:49 UTC

svn commit: r1710147 - /poi/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java

Author: onealj
Date: Fri Oct 23 08:56:49 2015
New Revision: 1710147

URL: http://svn.apache.org/viewvc?rev=1710147&view=rev
Log:
bug 58439: rename private FormulaShifter.adjustPtgDueToShiftMove to adjustPtgDueToSheetMove

Modified:
    poi/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java?rev=1710147&r1=1710146&r2=1710147&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/FormulaShifter.java Fri Oct 23 08:56:49 2015
@@ -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;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org