CSV custom parameters not taken into account in Table filter

Issue #86 resolved
Former user created an issue

Original [issue 86](https://code.google.com/p/okapi/issues/detail?id=86) created by @ysavourel on 2009-07-08T12:31:26.000Z:

It seems that for a given instantiated table filter doing:

params = filter.getParameters(); params.load(myCustomParamsfilename);

loads the given custom fprm file ok, but does not take it into account in the filter. the filter after these calls still behaves as the parameters file had not been loaded. To test: see the two attached files and use any of the rainbow filter- based function: event when the input file is assigned to the custom configuration, the filter behaves like it is working with the csv default configuration.

Note that the code above does not do:

params = filter.getParameters(); params.load(myCustomParamsfilename); filter.setParameters(params);

just

params = filter.getParameters(); params.load(myCustomParamsfilename);

But it should not need to since filter is already set to params. right?

Comments (2)

  1. Log in to comment