diff --git a/src/main/java/org/ntlab/acanthus_server/entities/AnimationJson.java b/src/main/java/org/ntlab/acanthus_server/entities/AnimationJson.java index 1065cbf..f0d5dd6 100644 --- a/src/main/java/org/ntlab/acanthus_server/entities/AnimationJson.java +++ b/src/main/java/org/ntlab/acanthus_server/entities/AnimationJson.java @@ -13,7 +13,7 @@ "aid", "animationName", "owner", - "editors", + //"editors", "createdDate" }) @@ -31,8 +31,8 @@ @JsonProperty("owner") private Integer owner; - @JsonProperty("editors") - private Collection editors; +// @JsonProperty("editors") +// private Collection editors; @JsonProperty("createdDate") private String createdDate; @@ -42,7 +42,7 @@ this.aid = animation.getAid(); this.animationName = animation.getName(); this.owner = animation.getOwner().getUid(); - this.editors = animation.getEditors(); + // this.editors = animation.getEditors(); this.createdDate = animation.getCreatedDate(); }