mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-11452 Remove NULL check causing a compile warning. An alternate check is still needed.
X-SVN-Rev: 36896
This commit is contained in:
parent
c356adbd4e
commit
ea29e154b5
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ class SimpleDateFormatMutableNFs : public UMemory {
|
|||
}
|
||||
U_ASSERT(idx < UDAT_FIELD_COUNT);
|
||||
nodes[idx].key = &nf;
|
||||
nodes[idx].value = (&nf == NULL) ? NULL : (NumberFormat *) nf.clone();
|
||||
nodes[idx].value = (NumberFormat *) nf.clone();
|
||||
return nodes[idx].value;
|
||||
}
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue