Remove implementation classes from public API.
This commit is contained in:
parent
bab2a8b991
commit
9146f7abe2
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue