* fix deserializer issue

This commit is contained in:
Reinhard Pointner 2014-07-25 17:04:44 +00:00
parent e15b17d49f
commit 99ce48ad5b
1 changed files with 6 additions and 2 deletions

View File

@ -2,8 +2,12 @@ package net.filebot.web;
public class MoviePart extends Movie {
protected final int partIndex;
protected final int partCount;
protected int partIndex;
protected int partCount;
protected MoviePart() {
// used by serializer
}
public MoviePart(MoviePart obj) {
this(obj, obj.partIndex, obj.partCount);