Only compute recon features if cell contains a string
This commit is contained in:
parent
a881dc80aa
commit
a79e0f3187
@ -134,7 +134,9 @@ public class NewItemLibrary {
|
||||
ReconConfig config = column.getReconConfig();
|
||||
if (config instanceof StandardReconConfig) {
|
||||
StandardReconConfig stdConfig = (StandardReconConfig)config;
|
||||
stdConfig.computeFeatures(recon, cell.getValueAsString());
|
||||
if (cell instanceof (String)) {
|
||||
stdConfig.computeFeatures(recon, cell.getValue());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user