Skip to content

Commit

Permalink
Improve coding standard and quality
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaniceTang committed Nov 8, 2023
1 parent 9ea87e7 commit d02e5e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/seedu/cafectrl/parser/Parser.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ private static Command prepareAdd(String arguments, Menu menu, Ui ui) {
* @throws IllegalArgumentException if the input string of ingredients is in an incorrect format.
* @throws ParserException if the input string does not match the constraints
*/
private static ArrayList<Ingredient> parseIngredients(String ingredientsListString, boolean excludeRepeatedIngredients)
private static ArrayList<Ingredient> parseIngredients(String ingredientsListString,
boolean excludeRepeatedIngredients)
throws IllegalArgumentException, ParserException {
String[] inputIngredientList = {ingredientsListString};

Expand Down

0 comments on commit d02e5e5

Please sign in to comment.