#31 -- Fix NPE
Some checks failed
CI fuzzy controller / container-test-job (push) Failing after 9s

This commit is contained in:
Anton Romanov 2025-03-28 10:37:03 +04:00
parent de63be3014
commit 12ded36f3e

View File

@ -20,7 +20,7 @@ public class FuzzyTermForm {
}
public FuzzyTermForm(Integer id, Integer projectId, Integer variableId) {
this(id, projectId, variableId, null);
this(id, projectId, variableId, new FuzzyTerm());
}
public FuzzyTermForm(Integer projectId, Integer variableId, String description, Double value) {