ICU-8319 remove redundant cast

X-SVN-Rev: 30025
This commit is contained in:
Markus Scherer 2011-05-04 22:06:09 +00:00
parent 093d42a0df
commit 78174d2eca

View file

@ -1427,7 +1427,7 @@ public class MessageFormat extends UFormat {
other.cachedFormatters = new HashMap<Integer, Format>();
Iterator<Map.Entry<Integer, Format>> it = cachedFormatters.entrySet().iterator();
while (it.hasNext()){
Map.Entry<Integer, Format> entry = (Map.Entry<Integer, Format>)it.next();
Map.Entry<Integer, Format> entry = it.next();
other.cachedFormatters.put(entry.getKey(), entry.getValue());
}
} else {