Skip to content
Snippets Groups Projects
Commit 849aff22 authored by Mirco's avatar Mirco
Browse files

bugfix: add missing empty constructor for Algorithm which is needed for JSON de-serialization

parent 1fcfd765
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,10 @@ public class Algorithm extends ExperimentValidator {
private boolean validation;
public Algorithm() {
}
public Algorithm(String code, String name, boolean validation) {
this.validation = validation;
setCode(code);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment