mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-501: refactoring, compiler warning in Paragraph.java
`transient` for SerialVersionUID was introduced in 68bdb2f011 (diff-8c6a0b47ceeb47c966f2b058e730b323R26)
This commit is contained in:
parent
40cf9e86c3
commit
3f209043a3
1 changed files with 2 additions and 1 deletions
|
|
@ -36,7 +36,8 @@ import java.util.*;
|
|||
*
|
||||
*/
|
||||
public class Paragraph extends Job implements Serializable, Cloneable {
|
||||
private static final transient long serialVersionUID = -6328572073497992016L;
|
||||
private static final long serialVersionUID = -6328572073497992016L;
|
||||
|
||||
private transient NoteInterpreterLoader replLoader;
|
||||
private transient Note note;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue