Skip to content

Commit

Permalink
Remove redundant comment block on duke class
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Y-Yan committed Nov 14, 2023
1 parent 07875cb commit 24f568d
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/main/java/seedu/duke/Duke.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
// }
}

0 comments on commit 24f568d

Please sign in to comment.