Merge pull request #44 from OnixByte/develop

1.6.6: Fix build issues
This commit is contained in:
Zihlu Wang
2024-10-26 16:28:36 +08:00
committed by GitHub
3 changed files with 8 additions and 4 deletions
@@ -33,7 +33,6 @@ import java.util.List;
* <p> * <p>
* This class is final, meaning it cannot be subclassed, and it only contains static methods, * This class is final, meaning it cannot be subclassed, and it only contains static methods,
* so instances of the class cannot be created. * so instances of the class cannot be created.
* </p>
* <h2>Example usage:</h2> * <h2>Example usage:</h2>
* <pre> * <pre>
* {@code * {@code
@@ -49,6 +48,12 @@ import java.util.List;
*/ */
public final class PercentileCalculator { public final class PercentileCalculator {
/**
* Private constructor prevents from being initialised.
*/
private PercentileCalculator() {
}
/** /**
* Calculates the specified percentile from a list of values. * Calculates the specified percentile from a list of values.
* <p> * <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 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> * <li>{@code upperBound} - The upper bound of the dataset, typically {@code Q3 + 1.5 * IQR}.</li>
* </ul> * </ul>
* </p>
* <p> * <p>
* Example usage: * Example usage:
* <pre> * <pre>
+2 -2
View File
@@ -20,12 +20,12 @@ rootProject.name = "JDevKit"
include( include(
"devkit-core", "devkit-core",
"devkit-utils", "devkit-utils",
"map-util-unsafe",
"guid", "guid",
"key-pair-loader", "key-pair-loader",
"map-util-unsafe",
"num4j",
"simple-jwt-facade", "simple-jwt-facade",
"simple-jwt-authzero", "simple-jwt-authzero",
"simple-jwt-spring-boot-starter", "simple-jwt-spring-boot-starter",
"property-guard-spring-boot-starter" "property-guard-spring-boot-starter"
) )
include("num4j")