Skip to content

Commit

Permalink
Merge pull request nus-cs2113-AY2324S2#44 from Ijaaz01/MohamedIjaaz-f…
Browse files Browse the repository at this point in the history
…ormatting

Change successful removal message
  • Loading branch information
IanFH committed Mar 20, 2024
2 parents e7ef695 + 330f8e8 commit 0fc9588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/florizz/core/Ui.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void printAddFlowerSuccess(ArrayList<Bouquet> bouquetList, String flowerN
* @param bouquetName
*/
public void printRemoveFlowerSuccess(ArrayList<Bouquet> bouquetList, String flowerName, Integer quantity, String bouquetName) {
System.out.println("You have successfully added the following: " + System.lineSeparator() +
System.out.println("You have successfully removed the following: " + System.lineSeparator() +
" - " + quantity + " x " + flowerName + " -> Bouquet: " + bouquetName);
printAllBouquets(bouquetList);
printBreakLine();
Expand Down

0 comments on commit 0fc9588

Please sign in to comment.