diff --git a/src/app/comment.ts b/src/app/comment.ts index 80899ed0db7e8bb7c55da647eee0543a03365723..d16510a5b082ca39a0c4fe26461fbe5cb7573423 100644 --- a/src/app/comment.ts +++ b/src/app/comment.ts @@ -6,14 +6,4 @@ export class Comment { body: string; read: boolean; creationTimestamp: Date; - - constructor(id: string, roomId: string, subject: string, body: string, creationTimestamp: Date) { - this.id = id; - this.roomId = roomId; - this.revision = null; - this.subject = subject; - this.body = body; - this.read = false; - this.creationTimestamp = creationTimestamp; - } }