]> source.dussan.org Git - poi.git/commitdiff
fixed compiler error from r761723
authorJosh Micich <josh@apache.org>
Fri, 3 Apr 2009 23:16:44 +0000 (23:16 +0000)
committerJosh Micich <josh@apache.org>
Fri, 3 Apr 2009 23:16:44 +0000 (23:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@761836 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/util/CellReference.java

index 2e31b2a2157dc1179ba137c4793620856bd0796c..af243aafde5ed2873a797ef0b7c001fea09360e8 100644 (file)
@@ -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);
-    }
 }