This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git
commit 235f9312c5726b9f1f7cac9cf8eb2fd893b04c2d Author: Alex Herbert <[email protected]> AuthorDate: Fri Oct 2 22:09:46 2020 +0100 Javadoc generic map type M --- src/main/java/org/apache/commons/csv/CSVRecord.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVRecord.java b/src/main/java/org/apache/commons/csv/CSVRecord.java index 5181bc9..f3b023f 100644 --- a/src/main/java/org/apache/commons/csv/CSVRecord.java +++ b/src/main/java/org/apache/commons/csv/CSVRecord.java @@ -263,8 +263,8 @@ public final class CSVRecord implements Serializable, Iterable<String> { /** * Puts all values of this record into the given Map. * - * @param map - * The Map to populate. + * @param <M> the map type + * @param map The Map to populate. * @return the given map. * @since 1.9 */
