Skip to content

Commit

Permalink
ZEPPELIN-501: refactoring, compiler warning in Paragraph.java
Browse files Browse the repository at this point in the history
`transient` for SerialVersionUID was introduced in apache@68bdb2f#diff-8c6a0b47ceeb47c966f2b058e730b323R26
  • Loading branch information
bzz committed Dec 22, 2015
1 parent 40cf9e8 commit 3f20904
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
*
*/
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;

Expand Down

0 comments on commit 3f20904

Please sign in to comment.