mirror of https://github.com/apache/poi.git
fixed compiler error from r761723
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@761836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
05c02a42af
commit
93d7983560
|
@ -40,10 +40,8 @@ public final class CellReference extends org.apache.poi.ss.util.CellReference {
|
|||
public CellReference(int pRow, int pCol, boolean pAbsRow, boolean pAbsCol) {
|
||||
super(null, pRow, pCol, pAbsRow, pAbsCol);
|
||||
}
|
||||
|
||||
public CellReference(String pSheetName, int pRow, int pCol, boolean pAbsRow, boolean pAbsCol) {
|
||||
super(pSheetName, pRow, pCol, pAbsRow, pAbsCol);
|
||||
}
|
||||
protected static String convertNumToColString(int col) {
|
||||
return org.apache.poi.ss.util.CellReference.convertNumToColString(col);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue