ZEPPELIN-501: add default val for Note.name

This commit is contained in:
Alexander Bezzubov 2015-12-17 11:48:51 +09:00
parent c7ae983c3d
commit 36b2467b0a

View file

@ -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;