Add default constructor, so that deserialization works

This commit is contained in:
0xboobface 2018-10-22 17:25:57 +02:00
parent 15c1c6f62c
commit 1ba003fe56
1 changed files with 6 additions and 0 deletions

View File

@ -28,6 +28,12 @@ public class ChaturbateModel extends AbstractModel {
private static final transient Logger LOG = LoggerFactory.getLogger(ChaturbateModel.class);
private Chaturbate site;
/**
* This constructor exists only for deserialization. Please don't call it directly
*/
public ChaturbateModel() {
}
ChaturbateModel(Chaturbate site) {
this.site = site;
}