Skip to content

Commit 27761c0

Browse files
author
Zihlu Wang
authored
Merge pull request #44 from OnixByte/develop
1.6.6: Fix build issues
2 parents 152dc91 + 9c3d9c5 commit 27761c0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ rootProject.name = "JDevKit"
2020
include(
2121
"devkit-core",
2222
"devkit-utils",
23-
"map-util-unsafe",
2423
"guid",
2524
"key-pair-loader",
25+
"map-util-unsafe",
26+
"num4j",
2627
"simple-jwt-facade",
2728
"simple-jwt-authzero",
2829
"simple-jwt-spring-boot-starter",
2930
"property-guard-spring-boot-starter"
3031
)
31-
include("num4j")

0 commit comments

Comments
 (0)