From 24f568d193849911fea5b0ff9142680c4d8a8b4d Mon Sep 17 00:00:00 2001 From: "MSI\\jyben" Date: Tue, 14 Nov 2023 19:47:10 +0800 Subject: [PATCH] Remove redundant comment block on duke class --- src/main/java/seedu/duke/Duke.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/main/java/seedu/duke/Duke.java b/src/main/java/seedu/duke/Duke.java index 7cb3284a6..f1e8dd66b 100644 --- a/src/main/java/seedu/duke/Duke.java +++ b/src/main/java/seedu/duke/Duke.java @@ -107,17 +107,4 @@ private CommandResult executeCommand(Command command) { } } - // /** - // * Creates the StorageFile object based on the user specified path (if any) or - // the default storage path. - // * @param launchArgs arguments supplied by the user at program launch - // * @throws InvalidStorageFilePathException if the target file path is - // incorrect. - // */ - // private StorageFile initializeStorage(String[] launchArgs) throws - // InvalidStorageFilePathException { - // boolean isStorageFileSpecifiedByUser = launchArgs.length > 0; - // return isStorageFileSpecifiedByUser ? new StorageFile(launchArgs[0]) : new - // StorageFile(); - // } }