Changed values assignment from keys.clone() to values.clone()

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@688408 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-08-23 20:34:57 +00:00
parent cc32fc4d32
commit 8d1ae0a3d0
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ public class CharArrayMap<V> extends AbstractMap<String, V>
try {
map = (CharArrayMap<V>)super.clone();
map.keys = keys.clone();
map.values = keys.clone();
map.values = values.clone();
} catch (CloneNotSupportedException e) {
// impossible
}