Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve ResultsPostprocessor to handle all convertible types #5

Open
imagejan opened this issue Dec 12, 2018 · 0 comments
Open

Improve ResultsPostprocessor to handle all convertible types #5

imagejan opened this issue Dec 12, 2018 · 0 comments
Assignees

Comments

@imagejan
Copy link
Member

As suggested by @ctrueden in imagej/imagej-common#80 (comment), let's improve ResultsPostprocessor to not only check for "simple" types but handle any convertible types when processing outputs:

module.getInfo().outputs().forEach(output -> {
final String name = output.getName();
if (module.isOutputResolved(name)) return;
if (module.getOutput(name) == null) return;
if (!isSimple(module, output)) return;
outputs.add(output);
});

@imagejan imagejan self-assigned this Dec 12, 2018
ctrueden pushed a commit that referenced this issue Sep 27, 2022
…nore misbehaving tests #5

* the new testParser test demonstrates how a table containing Double
values are saved to disk by default and loaded as String values by
default after opening the same file
* testSmallTables and testQuote had to be ignored since they modify the
parameters of DefaultTableIOPlugin and that messes with the new
testParser test since they share a context
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant