Fix the initial status to READY

This commit is contained in:
Jongyoul Lee 2017-03-01 15:15:23 +09:00
parent faacb5fa2e
commit a190f2f23c

View file

@ -143,7 +143,7 @@ public class Paragraph extends Job implements Serializable, Cloneable {
p.setTitle(getTitle());
p.setText(getText());
p.setResult(getReturn());
p.setStatus(getStatus());
p.setStatus(Status.READY);
p.setId(getId());
addUser(p, user);
return p;