You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2015/08/31 14:02:59 UTC

[3/4] [math] Missing javadoc.

Missing javadoc.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/265dd679
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/265dd679
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/265dd679

Branch: refs/heads/MATH_3_X
Commit: 265dd679aac547083ad5824b8cdcef8b2d4fb83f
Parents: afe2f3e
Author: Luc Maisonobe <lu...@apache.org>
Authored: Mon Aug 31 14:01:55 2015 +0200
Committer: Luc Maisonobe <lu...@apache.org>
Committed: Mon Aug 31 14:01:55 2015 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/math3/util/MathArrays.java | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/265dd679/src/main/java/org/apache/commons/math3/util/MathArrays.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math3/util/MathArrays.java b/src/main/java/org/apache/commons/math3/util/MathArrays.java
index 82310ac..2ed7367 100644
--- a/src/main/java/org/apache/commons/math3/util/MathArrays.java
+++ b/src/main/java/org/apache/commons/math3/util/MathArrays.java
@@ -748,19 +748,26 @@ public class MathArrays {
      * A helper data structure holding a double and an integer value.
      */
     private static class PairDoubleInteger {
-
+        /** Key */
         private final double key;
+        /** Value */
         private final int value;
 
+        /**
+         * @param key Key.
+         * @param value Value.
+         */
         public PairDoubleInteger(double key, int value) {
             this.key = key;
             this.value = value;
         }
 
+        /** @return the key. */
         public double getKey() {
             return key;
         }
 
+        /** @return the value. */
         public int getValue() {
             return value;
         }