Skip to content

Commit bfbc702

Browse files
author
zihluwang
committed
fix: fix build issues
1 parent 72ccafb commit bfbc702

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

num4j/src/main/java/com/onixbyte/nums/PercentileCalculator.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* <p>
3434
* This class is final, meaning it cannot be subclassed, and it only contains static methods,
3535
* so instances of the class cannot be created.
36-
* </p>
3736
* <h2>Example usage:</h2>
3837
* <pre>
3938
* {@code
@@ -49,6 +48,12 @@
4948
*/
5049
public final class PercentileCalculator {
5150

51+
/**
52+
* Private constructor prevents from being initialised.
53+
*/
54+
private PercentileCalculator() {
55+
}
56+
5257
/**
5358
* Calculates the specified percentile from a list of values.
5459
* <p>

num4j/src/main/java/com/onixbyte/nums/model/QuartileBounds.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* <li>{@code lowerBound} - The lower bound of the dataset, typically {@code Q1 - 1.5 * IQR}.</li>
3030
* <li>{@code upperBound} - The upper bound of the dataset, typically {@code Q3 + 1.5 * IQR}.</li>
3131
* </ul>
32-
* </p>
3332
* <p>
3433
* Example usage:
3534
* <pre>

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ rootProject.name = "JDevKit"
2020
include(
2121
"devkit-core",
2222
"devkit-utils",
23+
"num4j",
2324
"map-util-unsafe",
2425
"guid",
2526
"key-pair-loader",

0 commit comments

Comments
 (0)