mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-1222 change US::empty() to isEmpty()
X-SVN-Rev: 5946
This commit is contained in:
parent
d31068034f
commit
e86dbbf746
2 changed files with 2 additions and 2 deletions
|
@ -269,7 +269,7 @@ ResourceBundle::constructForLocale(const UnicodeString& path,
|
|||
{
|
||||
char name[300];
|
||||
|
||||
if(!path.empty()) {
|
||||
if(!path.isEmpty()) {
|
||||
path.extract(name, sizeof(name), 0, error);
|
||||
resource = ures_open(name, locale.getName(), &error);
|
||||
} else {
|
||||
|
|
|
@ -1165,7 +1165,7 @@ void UnicodeStringTest::TestUnescape(void) {
|
|||
}
|
||||
|
||||
// test that an empty string is returned in case of an error
|
||||
if (!UNICODE_STRING("wrong \\u sequence", 17).unescape().empty()) {
|
||||
if (!UNICODE_STRING("wrong \\u sequence", 17).unescape().isEmpty()) {
|
||||
errln("FAIL: unescaping of a string with an illegal escape sequence did not return an empty string");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue