Skip to content

Commit

Permalink
Fixed all Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MeAlam1 committed Dec 13, 2024
1 parent 695faf9 commit cd47fe9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ private GeometricUtils() {}
/**
* A {@link Double} that calculates the Euclidean distance between two points in 2D space.
*
* @param pX1 {@link double} - The x-coordinate of the first point.
* @param pY1 {@link double} - The y-coordinate of the first point.
* @param pX2 {@link double} - The x-coordinate of the second point.
* @param pY2 {@link double} - The y-coordinate of the second point.
* @param pX1 {@link Double} - The x-coordinate of the first point.
* @param pY1 {@link Double} - The y-coordinate of the first point.
* @param pX2 {@link Double} - The x-coordinate of the second point.
* @param pY2 {@link Double} - The y-coordinate of the second point.
* @return The distance between the two points.
* @author MeAlam
* @since 1.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private StatisticalUtils() {}
* Logs a warning if the array is empty and a success message with the calculated mean.
* </p>
*
* @param pValues {@link double[]} - The array of values to calculate the mean for.
* @param pValues {@link Double[]} - The array of values to calculate the mean for.
* @return The mean of the values.
* @author MeAlam
* @since 1.0.0
Expand Down

0 comments on commit cd47fe9

Please sign in to comment.