fixed checkstyle warnings
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@894187 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cb75cc3458
commit
3c122e41b1
|
@ -69,7 +69,6 @@ public class OpenMapRealVector extends AbstractRealVector implements SparseRealV
|
||||||
* Construct a (dimension)-length vector of zeros, specifying zero tolerance.
|
* Construct a (dimension)-length vector of zeros, specifying zero tolerance.
|
||||||
* @param dimension Size of the vector
|
* @param dimension Size of the vector
|
||||||
* @param epsilon The tolerance for having a value considered zero
|
* @param epsilon The tolerance for having a value considered zero
|
||||||
* @param defaultValue value for non-specified entries
|
|
||||||
*/
|
*/
|
||||||
public OpenMapRealVector(int dimension, double epsilon) {
|
public OpenMapRealVector(int dimension, double epsilon) {
|
||||||
virtualSize = dimension;
|
virtualSize = dimension;
|
||||||
|
@ -608,7 +607,6 @@ public class OpenMapRealVector extends AbstractRealVector implements SparseRealV
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** {@inheritDoc} */
|
/** {@inheritDoc} */
|
||||||
public OpenMapRealVector mapAdd(double d) {
|
public OpenMapRealVector mapAdd(double d) {
|
||||||
return copy().mapAddToSelf(d);
|
return copy().mapAddToSelf(d);
|
||||||
|
|
Loading…
Reference in New Issue