Remove implementation classes from public API.

This commit is contained in:
Gilles Sadowski 2021-05-28 19:42:17 +02:00
parent bab2a8b991
commit 9146f7abe2
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ package org.apache.commons.math4.legacy.stat.descriptive;
* such as automatic expansion, contraction, and array "rolling".
*
*/
public interface DoubleArray {
interface DoubleArray { // Not in public API.
/**
* Returns the number of elements currently in the array. Please note

View File

@ -75,7 +75,7 @@ import org.apache.commons.math4.legacy.util.MathArrays;
* <p>
* <b>Note:</b> this class is <b>NOT</b> thread-safe.
*/
public class ResizableDoubleArray implements DoubleArray, Serializable {
class ResizableDoubleArray implements DoubleArray, Serializable { // Not in public API.
/** Serializable version identifier. */
private static final long serialVersionUID = -3485529955529426875L;