mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-09 22:09:47 -04:00
* 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 {
|
||||
|
||||
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user