ICU-1222 change US::empty() to isEmpty()

X-SVN-Rev: 5946
This commit is contained in:
Markus Scherer 2001-09-27 22:39:39 +00:00
parent d31068034f
commit e86dbbf746
2 changed files with 2 additions and 2 deletions

View file

@ -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 {

View file

@ -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");
}
}