Skip to content

Commit

Permalink
Chore: fix Javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dbmalkovsky committed Oct 24, 2024
1 parent 3c011b7 commit f2ce2e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public List<MedicalInventory> getMedicalInventoryByStatusAndWard(String status,
* Return a list {@link MedicalInventory}s for passed params.
*
* @param status - the {@link MedicalInventory} status.
* @param type - the {@link MedicalInventory} type.
* @param inventoryType - the {@link MedicalInventory} type.
* @return the list of {@link MedicalInventory}s. It could be {@code empty}.
* @throws OHServiceException
*/
Expand Down Expand Up @@ -253,7 +253,7 @@ public void validateMedicalInventoryRow(MedicalInventory inventory, List<Medical

// TODO: To decide if to make allMedicals parameter
boolean allMedicals = true;
List<Movement> movs = new ArrayList<Movement>();
List<Movement> movs = new ArrayList<>();
List<Medical> inventoryMedicalsList = inventoryRowSearchList.stream()
.map(MedicalInventoryRow::getMedical)
.distinct()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public List<MedicalInventory> getMedicalInventoryByStatusAndWard(String status,
* Return a list of {@link MedicalInventory}s for passed params.
*
* @param status - the {@link MedicalInventory} status.
* @param type - the {@link MedicalInventory} type.
* @param inventoryType - the {@link MedicalInventory} type.
* @return the list of {@link MedicalInventory}s. It could be {@code empty}.
* @throws OHServiceException
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ public void deleteLot(Lot lot) throws OHServiceException {
/**
* Retrieves all medicals referencing the specified code.
*
* @param lotCode the lot code.
* @param code the lot code.
* @return the ids of medicals referencing the specified lot.
* @throws OHServiceException if an error occurs retrieving the referencing medicals.
*/
Expand Down

0 comments on commit f2ce2e4

Please sign in to comment.