Поправил таймер, удалил викторину

This commit is contained in:
Mark Struchkov 2019-05-20 15:46:04 +03:00
parent 6834aa2801
commit b4baee35f0
2 changed files with 20 additions and 0 deletions

View File

@ -4,6 +4,8 @@ import java.util.Objects;
public abstract class Content {
public static final EmptyContent EMPTY_CONTENT = new EmptyContent();
private Integer personId;
private String message;

View File

@ -0,0 +1,18 @@
package org.sadtech.bot.core.domain;
public class EmptyContent extends Content {
public EmptyContent() {
}
@Override
public String getMessage() {
return "";
}
@Override
public void setMessage(String message) {
}
}