diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/core/ColumnMapRowMapper.java b/spring-jdbc/src/main/java/org/springframework/jdbc/core/ColumnMapRowMapper.java index 5c65b72e73..ccec6462a3 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/core/ColumnMapRowMapper.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/core/ColumnMapRowMapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2018 the original author or authors. + * Copyright 2002-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -31,8 +31,8 @@ import org.springframework.util.LinkedCaseInsensitiveMap; * entry for each column, with the column name as key. * *
The Map implementation to use and the key to use for each column - * in the column Map can be customized through overriding - * {@link #createColumnMap} and {@link #getColumnKey}, respectively. + * in the column Map can be customized by overriding {@link #createColumnMap} + * and {@link #getColumnKey}, respectively. * *
Note: By default, {@code ColumnMapRowMapper} will try to build a linked Map * with case-insensitive keys, to preserve column order as well as allow any @@ -71,6 +71,7 @@ public class ColumnMapRowMapper implements RowMapper