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:
parent
59411494e0
commit
5f9a1987ff
|
@ -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()]);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue