We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ce569 commit 7cb0e96Copy full SHA for 7cb0e96
2 files changed
carRentalSystem/src/main/java/com/lld/carRentalSystem/entities/storeDetails/Store.java
@@ -24,7 +24,7 @@ public class Store {
24
25
/**
26
* Method to set inventory management with vehicle list
27
- * @param vehicleList
+ * @param vehicleList {@link List<Vehicle>}
28
*/
29
public void setInventoryManagement(List<Vehicle> vehicleList) {
30
this.inventoryManagement = new VehicleInventoryManagement(vehicleList);
carRentalSystem/src/main/java/com/lld/carRentalSystem/entities/vehicleDetails/VehicleRentalSystem.java
@@ -14,7 +14,7 @@ public class VehicleRentalSystem {
14
15
16
* Method to get store from store list
17
- * @param location
+ * @param location {@link Location}
18
* @return {@link Store}
19
20
public Store getStore(Location location) {
0 commit comments