1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix deserializer issue

This commit is contained in:
Reinhard Pointner 2014-07-25 17:04:44 +00:00
parent e15b17d49f
commit 99ce48ad5b

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);