Skip to content
Snippets Groups Projects
Commit 74983d85 authored by kaloyane's avatar kaloyane
Browse files

minor: keep all classes in "common" 1.5 compatible for now

SVN: 22767
parent c5730480
No related branches found
No related tags found
No related merge requests found
...@@ -16,8 +16,6 @@ ...@@ -16,8 +16,6 @@
package ch.systemsx.cisd.common.parser; package ch.systemsx.cisd.common.parser;
import java.util.Arrays;
import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.util.CellReference; import org.apache.poi.ss.util.CellReference;
...@@ -74,7 +72,9 @@ public class ExcelRowTokenizer implements ILineTokenizer<Row> ...@@ -74,7 +72,9 @@ public class ExcelRowTokenizer implements ILineTokenizer<Row>
return new String[0]; return new String[0];
} }
return Arrays.copyOfRange(line, 0, last + 1); String[] result = new String[last + 1];
System.arraycopy(line, 0, result, 0, last + 1);
return result;
} }
private static String extractCellValue(Cell cell) throws ParserException private static String extractCellValue(Cell cell) throws ParserException
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment