From 520046f8d479ace00e4714c5bc1cebdfe801a226 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sat, 3 Oct 2020 17:36:01 +0200 Subject: [PATCH] Remove NoteUtils class, as the planned parsing logic is not needed anymore Signed-off-by: David Mehren Co-authored-by: Yannick Bungers --- src/notes/note.utils.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/notes/note.utils.ts diff --git a/src/notes/note.utils.ts b/src/notes/note.utils.ts deleted file mode 100644 index d84c4b182..000000000 --- a/src/notes/note.utils.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Note } from './note.entity'; - -export class NoteUtils { - public static parseTitle(note: Note): string { - // TODO: Implement method - return 'Hardcoded note title'; - } - - public static parseDescription(note: Note): string { - // TODO: Implement method - return 'Hardcoded note description'; - } - - public static parseTags(note: Note): string[] { - // TODO: Implement method - return ['Hardcoded note tag']; - } -}