From: Josh Micich Date: Fri, 3 Apr 2009 23:16:44 +0000 (+0000) Subject: fixed compiler error from r761723 X-Git-Tag: REL_3_5_BETA6~74 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=93d79835606de2632e854d89f8bc11f4b06e471f;p=poi.git fixed compiler error from r761723 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@761836 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/hssf/util/CellReference.java b/src/java/org/apache/poi/hssf/util/CellReference.java index 2e31b2a215..af243aafde 100644 --- a/src/java/org/apache/poi/hssf/util/CellReference.java +++ b/src/java/org/apache/poi/hssf/util/CellReference.java @@ -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); - } }