1
0
Fork 0

Make event parameter serializable

This commit is contained in:
hpi1 2019-05-24 12:10:59 +03:00
parent 23462a14d2
commit 36035679db
1 changed files with 4 additions and 1 deletions

View File

@ -20,11 +20,12 @@
package javax.tv.util;
import java.util.Enumeration;
import java.io.Serializable;
import java.util.Vector;
import org.videolan.Logger;
public class TVTimerSpec
public class TVTimerSpec implements Serializable
{
private boolean absolute;
private boolean regular;
@ -101,4 +102,6 @@ public class TVTimerSpec
throw new IllegalArgumentException();
this.time = time;
}
private static final long serialVersionUID = -4714470266350436478L;
}