Skip to content

Commit

Permalink
Improve code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaniceTang committed Nov 11, 2023
1 parent 8e90c37 commit 182e7e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/cafectrl/storage/Decoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private static void decodeDishString(String dishString, ArrayList<Dish> menuDish
* @param ingredientsStringArray An array of strings containing encoded ingredient data.
* @return An ArrayList of Ingredient objects containing the decoded ingredient information.
*/
private static ArrayList<Ingredient> decodeIngredientData(String[] ingredientsStringArray) throws Exception{
private static ArrayList<Ingredient> decodeIngredientData(String[] ingredientsStringArray) throws Exception {
ArrayList<Ingredient> ingredientList = new ArrayList<>();
for(String ingredientString : ingredientsStringArray) {
logger.info("Ingredient to decode: " + ingredientString);
Expand Down

0 comments on commit 182e7e1

Please sign in to comment.