mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-8319 remove redundant cast
X-SVN-Rev: 30025
This commit is contained in:
parent
093d42a0df
commit
78174d2eca
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue