mirror of https://github.com/apache/poi.git
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:
parent
37ee513fc9
commit
dcd3993146
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue