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:
parent
4966dcc61f
commit
2d5125af1e
@ -223,8 +223,7 @@ public class ExcelImporter extends TabularImportingParserBase {
|
|||||||
value = d;
|
value = d;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// TODO: Why are we changing input value during import?
|
String text = cell.getStringCellValue();
|
||||||
String text = cell.getStringCellValue().trim();
|
|
||||||
if (text.length() > 0) {
|
if (text.length() > 0) {
|
||||||
value = text;
|
value = text;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user