Fixed an unused constructor parameter in ArrayFieldVector.

JIRA: MATH-572

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1101575 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-05-10 18:09:07 +00:00
parent c7f092e022
commit d84695d151
2 changed files with 4 additions and 1 deletions

View File

@ -349,7 +349,7 @@ public class ArrayFieldVector<T extends FieldElement<T>> implements FieldVector<
data = buildArray(v1.length + v2.length);
System.arraycopy(v1, 0, data, 0, v1.length);
System.arraycopy(v2, 0, data, v1.length, v2.length);
this.field = data[0].getField();
this.field = field;
}
/**

View File

@ -52,6 +52,9 @@ The <action> type attribute can be add,update,fix,remove.
If the output is not quite correct, check for invisible trailing spaces!
-->
<release version="3.0" date="TBD" description="TBD">
<action dev="luc" type="fix" issue="MATH-572">
Fixed an unused constructor parameter in ArrayFieldVector.
</action>
<action dev="erans" type="add" issue="MATH-566">
Created an "ExceptionContext" class: It provides the customization feature of
"MathRuntimeException" without imposing a singly rooted hierarchy of the Comons