(no commit message)
authorAlexander Oppermann <a.oppermann@bgbm.org>
Mon, 1 Jul 2013 11:03:56 +0000 (11:03 +0000)
committerAlexander Oppermann <a.oppermann@bgbm.org>
Mon, 1 Jul 2013 11:03:56 +0000 (11:03 +0000)
cdmlib-commons/src/main/java/eu/etaxonomy/cdm/common/ExcelUtils.java

index bf2878db26c8d60afe141569856a9b0326ba1f7f..806880c7c017f2e6edb4ff156d970dca4acfa65b 100644 (file)
@@ -64,7 +64,7 @@ public class ExcelUtils {
                        HSSFRow row;
                        HSSFCell cell;
        
-                       int rows; // No of rows
+                       int rows; // Number of rows
                        rows = sheet.getPhysicalNumberOfRows();
                                if(logger.isDebugEnabled()) { logger.debug("Number of rows: " + rows); }
        
@@ -131,7 +131,7 @@ public class ExcelUtils {
     }
 
 
-       private static String getCellValue(HSSFCell cell) {
+       public static String getCellValue(HSSFCell cell) {
                try {
                        if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING ){
                                return cell.getStringCellValue();