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:
Sebastian Bazley 2012-03-03 00:47:39 +00:00
parent 97bc1fd0a6
commit 876127cc44

View File

@ -39,8 +39,9 @@ public class ArrayRealVector extends RealVector implements Serializable {
private static final long serialVersionUID = -1097961340710804027L;
/** Default format. */
private static final RealVectorFormat DEFAULT_FORMAT = RealVectorFormat.getInstance();
/** Entries of the vector. */
protected double data[];
private double data[];
/**
* Build a 0-length vector.