mirror of
https://github.com/apache/commons-math.git
synced 2025-02-06 01:59:13 +00:00
Field might as well be private, as there's a public getter
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1296539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
97bc1fd0a6
commit
876127cc44
@ -39,8 +39,9 @@ public class ArrayRealVector extends RealVector implements Serializable {
|
|||||||
private static final long serialVersionUID = -1097961340710804027L;
|
private static final long serialVersionUID = -1097961340710804027L;
|
||||||
/** Default format. */
|
/** Default format. */
|
||||||
private static final RealVectorFormat DEFAULT_FORMAT = RealVectorFormat.getInstance();
|
private static final RealVectorFormat DEFAULT_FORMAT = RealVectorFormat.getInstance();
|
||||||
|
|
||||||
/** Entries of the vector. */
|
/** Entries of the vector. */
|
||||||
protected double data[];
|
private double data[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Build a 0-length vector.
|
* Build a 0-length vector.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user