Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: fix Javadoc errors #1438

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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