You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by jo...@apache.org on 2009/04/04 01:16:44 UTC

svn commit: r761836 - /poi/trunk/src/java/org/apache/poi/hssf/util/CellReference.java

Author: josh
Date: Fri Apr  3 23:16:44 2009
New Revision: 761836

URL: http://svn.apache.org/viewvc?rev=761836&view=rev
Log:
fixed compiler error from r761723

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/util/CellReference.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/util/CellReference.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/util/CellReference.java?rev=761836&r1=761835&r2=761836&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/util/CellReference.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/util/CellReference.java Fri Apr  3 23:16:44 2009
@@ -40,10 +40,8 @@
     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);
-    }
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org