Skip to content
Snippets Groups Projects
Commit f2097254 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Readd empty constructor for deserialization with Jackson

This constructor was accidentally removed a part of a code clean up in
commit 685695a6.
parent a68715b0
No related merge requests found
Pipeline #8023 failed with stages
in 4 minutes and 25 seconds
......@@ -155,6 +155,10 @@ public class ImportExportSession {
private List<Answer> answers;
public ImportExportQuestion() {
}
public ImportExportQuestion(Question q) {
setType(q.getType());
setQuestionType(q.getQuestionType());
......
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