bug 61474, github #81: bump visibility of abstract methods in BaseRowColShifter abstract class

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814262 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-11-04 09:17:09 +00:00
parent 6fcacf21f3
commit 9375ae7873

View File

@ -35,14 +35,14 @@ import org.apache.poi.util.Internal;
public abstract class BaseRowColShifter {
/**
* Updated named ranges
* Update named ranges
*/
protected abstract void updateNamedRanges(FormulaShifter formulaShifter);
public abstract void updateNamedRanges(FormulaShifter formulaShifter);
/**
* Update formulas.
*/
protected abstract void updateFormulas(FormulaShifter formulaShifter);
public abstract void updateFormulas(FormulaShifter formulaShifter);
public abstract void updateConditionalFormatting(FormulaShifter formulaShifter);