Issue #2791 Fix fill value filter.
Former-commit-id: e845b829ba4518ac41f0ac26c22c3d83a5504375
This commit is contained in:
parent
4ee98a10cd
commit
1a45efe2a5
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public class FillValueFilter implements DataFilter {
|
|||
if (value == fillValue) {
|
||||
return Double.NaN;
|
||||
}
|
||||
return fillValue;
|
||||
return value;
|
||||
}
|
||||
|
||||
public static FilteredDataSource apply(DataSource source, double fillValue) {
|
||||
|
|
Loading…
Add table
Reference in a new issue