diff --git a/docs/uml-diagrams/ReportCommand.puml b/docs/uml-diagrams/ReportCommand.puml index 3abda946f..fd741644b 100644 --- a/docs/uml-diagrams/ReportCommand.puml +++ b/docs/uml-diagrams/ReportCommand.puml @@ -63,7 +63,7 @@ participant "SuperTracker" as SuperTracker <> #f5e3a9 participant ":ReportCommand" as ReportCommand #cbf7f4 participant "Inventory" as Inventory <> #d5eac2 participant "Ui" as Ui <> #e5c2ea -participant "Item" as Item #fbffb2 +participant ":Item" as Item #fbffb2 SuperTracker -> ReportCommand : execute() activate ReportCommand #cbf7f4 @@ -100,11 +100,11 @@ else Ui --> ReportCommand deactivate Ui end - ReportCommand -> ReportCommand + ReportCommand --> ReportCommand deactivate ReportCommand else reportType.equals("expiry") - ReportCommand -> ReportCommand : createExpiryReport(); + ReportCommand -> ReportCommand : createExpiryReport() activate ReportCommand #cbf7f4 loop for each item in items ReportCommand -> Item : getExpiryDate() @@ -126,11 +126,11 @@ else deactivate Ui end - ReportCommand -> ReportCommand + ReportCommand --> ReportCommand deactivate ReportCommand end - ReportCommand -> ReportCommand + ReportCommand --> ReportCommand deactivate ReportCommand end diff --git a/docs/uml-diagrams/ReportCommandSequence.png b/docs/uml-diagrams/ReportCommandSequence.png index 14e708c6e..e44dc9e6e 100644 Binary files a/docs/uml-diagrams/ReportCommandSequence.png and b/docs/uml-diagrams/ReportCommandSequence.png differ