mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-501: add default val for Note.name
This commit is contained in:
parent
c7ae983c3d
commit
36b2467b0a
1 changed files with 2 additions and 1 deletions
|
|
@ -50,9 +50,10 @@ import com.google.gson.Gson;
|
|||
public class Note implements Serializable, JobListener {
|
||||
transient Logger logger = LoggerFactory.getLogger(Note.class);
|
||||
List<Paragraph> paragraphs = new LinkedList<Paragraph>();
|
||||
private String name;
|
||||
private String name = "";
|
||||
private String id;
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
Map<String, List<AngularObject>> angularObjects = new HashMap<String, List<AngularObject>>();
|
||||
|
||||
private transient NoteInterpreterLoader replLoader;
|
||||
|
|
|
|||
Loading…
Reference in a new issue