From a07663cfaeeb93ebc87b55182ba85fbdae7f08c3 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Mon, 2 Nov 2015 15:15:15 +0100 Subject: [PATCH] Fixed missing types in javadoc. --- .../apache/commons/math3/geometry/partitioning/BSPTree.java | 1 + .../org/apache/commons/math3/linear/FieldLUDecomposition.java | 4 +++- src/main/java/org/apache/commons/math3/stat/Frequency.java | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/math3/geometry/partitioning/BSPTree.java b/src/main/java/org/apache/commons/math3/geometry/partitioning/BSPTree.java index c74e44337..1f1a6ea91 100644 --- a/src/main/java/org/apache/commons/math3/geometry/partitioning/BSPTree.java +++ b/src/main/java/org/apache/commons/math3/geometry/partitioning/BSPTree.java @@ -536,6 +536,7 @@ public class BSPTree { * specifies how to handle this situation. * setting *

+ * @param Type of the space. * @since 3.4 */ public interface VanishingCutHandler { diff --git a/src/main/java/org/apache/commons/math3/linear/FieldLUDecomposition.java b/src/main/java/org/apache/commons/math3/linear/FieldLUDecomposition.java index 4aa80edb9..bf1123a8d 100644 --- a/src/main/java/org/apache/commons/math3/linear/FieldLUDecomposition.java +++ b/src/main/java/org/apache/commons/math3/linear/FieldLUDecomposition.java @@ -256,7 +256,9 @@ public class FieldLUDecomposition> { return new Solver(field, lu, pivot, singular); } - /** Specialized solver. */ + /** Specialized solver. + * @param the type of the field elements + */ private static class Solver> implements FieldDecompositionSolver { /** Field to which the elements belong. */ diff --git a/src/main/java/org/apache/commons/math3/stat/Frequency.java b/src/main/java/org/apache/commons/math3/stat/Frequency.java index c9bc1006d..52f7ae44b 100644 --- a/src/main/java/org/apache/commons/math3/stat/Frequency.java +++ b/src/main/java/org/apache/commons/math3/stat/Frequency.java @@ -626,6 +626,7 @@ public class Frequency implements Serializable { /** * A Comparator that compares comparable objects using the * natural order. Copied from Commons Collections ComparableComparator. + * @param the type of the objects compared */ private static class NaturalComparator> implements Comparator>, Serializable {