Hide a method.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1560001 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-01-21 13:30:35 +00:00
parent 59411494e0
commit 5f9a1987ff
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ public final class CSVRecord implements Serializable, Iterable<String> {
* @param map The Map to populate.
* @return the given map.
*/
public Map<String, String> putIn(final Map<String, String> map) {
Map<String, String> putIn(final Map<String, String> map) {
for (final Entry<String, Integer> entry : mapping.entrySet()) {
map.put(entry.getKey(), values[entry.getValue().intValue()]);
}