Issue 462 - don't trim whitespace from string-valued cell contents on import

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2330 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2011-10-12 23:45:52 +00:00
parent 4966dcc61f
commit 2d5125af1e

View File

@ -223,8 +223,7 @@ public class ExcelImporter extends TabularImportingParserBase {
value = d;
}
} else {
// TODO: Why are we changing input value during import?
String text = cell.getStringCellValue().trim();
String text = cell.getStringCellValue();
if (text.length() > 0) {
value = text;
}