fix: fix build issues
This commit is contained in:
@@ -33,7 +33,6 @@ import java.util.List;
|
||||
* <p>
|
||||
* This class is final, meaning it cannot be subclassed, and it only contains static methods,
|
||||
* so instances of the class cannot be created.
|
||||
* </p>
|
||||
* <h2>Example usage:</h2>
|
||||
* <pre>
|
||||
* {@code
|
||||
@@ -49,6 +48,12 @@ import java.util.List;
|
||||
*/
|
||||
public final class PercentileCalculator {
|
||||
|
||||
/**
|
||||
* Private constructor prevents from being initialised.
|
||||
*/
|
||||
private PercentileCalculator() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculates the specified percentile from a list of values.
|
||||
* <p>
|
||||
|
||||
@@ -29,7 +29,6 @@ package com.onixbyte.nums.model;
|
||||
* <li>{@code lowerBound} - The lower bound of the dataset, typically {@code Q1 - 1.5 * IQR}.</li>
|
||||
* <li>{@code upperBound} - The upper bound of the dataset, typically {@code Q3 + 1.5 * IQR}.</li>
|
||||
* </ul>
|
||||
* </p>
|
||||
* <p>
|
||||
* Example usage:
|
||||
* <pre>
|
||||
|
||||
@@ -20,6 +20,7 @@ rootProject.name = "JDevKit"
|
||||
include(
|
||||
"devkit-core",
|
||||
"devkit-utils",
|
||||
"num4j",
|
||||
"map-util-unsafe",
|
||||
"guid",
|
||||
"key-pair-loader",
|
||||
|
||||
Reference in New Issue
Block a user