* fix deserializer issue
This commit is contained in:
parent
e15b17d49f
commit
99ce48ad5b
|
@ -2,8 +2,12 @@ package net.filebot.web;
|
||||||
|
|
||||||
public class MoviePart extends Movie {
|
public class MoviePart extends Movie {
|
||||||
|
|
||||||
protected final int partIndex;
|
protected int partIndex;
|
||||||
protected final int partCount;
|
protected int partCount;
|
||||||
|
|
||||||
|
protected MoviePart() {
|
||||||
|
// used by serializer
|
||||||
|
}
|
||||||
|
|
||||||
public MoviePart(MoviePart obj) {
|
public MoviePart(MoviePart obj) {
|
||||||
this(obj, obj.partIndex, obj.partCount);
|
this(obj, obj.partIndex, obj.partCount);
|
||||||
|
|
Loading…
Reference in New Issue