Skip to content

Commit 7cb0e96

Browse files
committed
Adding java doc
1 parent f0ce569 commit 7cb0e96

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

carRentalSystem/src/main/java/com/lld/carRentalSystem/entities/storeDetails/Store.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Store {
2424

2525
/**
2626
* Method to set inventory management with vehicle list
27-
* @param vehicleList
27+
* @param vehicleList {@link List<Vehicle>}
2828
*/
2929
public void setInventoryManagement(List<Vehicle> vehicleList) {
3030
this.inventoryManagement = new VehicleInventoryManagement(vehicleList);

carRentalSystem/src/main/java/com/lld/carRentalSystem/entities/vehicleDetails/VehicleRentalSystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class VehicleRentalSystem {
1414

1515
/**
1616
* Method to get store from store list
17-
* @param location
17+
* @param location {@link Location}
1818
* @return {@link Store}
1919
*/
2020
public Store getStore(Location location) {

0 commit comments

Comments
 (0)