Changeset 98:5a764c625290 in AnnotationManagerN4J for src/main/java/de/mpiwg
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/de/mpiwg/itgroup/annotations/neo4j/AnnotationStore.java
r81 r98 560 560 } 561 561 /* 562 * get creation date562 * get creation and update date 563 563 */ 564 564 annot.setCreated((String) annotNode.getProperty("created", null)); 565 annot.setUpdated((String) annotNode.getProperty("updated", null)); 565 566 /* 566 567 * get permissions … … 758 759 759 760 /* 760 * The creation date of this annotation.761 * The creation and update date of this annotation. 761 762 */ 762 763 String created = annot.getCreated(); 763 764 if (created != null) { 764 765 annotNode.setProperty("created", created); 766 } 767 String updated = annot.getUpdated(); 768 if (updated != null) { 769 annotNode.setProperty("updated", updated); 765 770 } 766 771
Note: See TracChangeset
for help on using the changeset viewer.