Use getValue when getting value of a cell
This commit is contained in:
parent
a79e0f3187
commit
318bb54185
@ -134,8 +134,8 @@ public class NewItemLibrary {
|
|||||||
ReconConfig config = column.getReconConfig();
|
ReconConfig config = column.getReconConfig();
|
||||||
if (config instanceof StandardReconConfig) {
|
if (config instanceof StandardReconConfig) {
|
||||||
StandardReconConfig stdConfig = (StandardReconConfig)config;
|
StandardReconConfig stdConfig = (StandardReconConfig)config;
|
||||||
if (cell instanceof (String)) {
|
if (cell.getValue() instanceof String) {
|
||||||
stdConfig.computeFeatures(recon, cell.getValue());
|
stdConfig.computeFeatures(recon, (String) cell.getValue());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user