mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-3499 Increase code coverage. Don't output debugging information
X-SVN-Rev: 15431
This commit is contained in:
parent
7a13cf6dca
commit
607e98f113
1 changed files with 1 additions and 17 deletions
|
@ -68,7 +68,7 @@ u_fsettransliterator(UFILE *file, UFileDirection direction,
|
|||
{
|
||||
UTransliterator *old = NULL;
|
||||
|
||||
if(file==NULL || U_FAILURE(*status))
|
||||
if(U_FAILURE(*status))
|
||||
{
|
||||
return adopt;
|
||||
}
|
||||
|
@ -192,14 +192,6 @@ static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count,
|
|||
&pos,
|
||||
&status);
|
||||
|
||||
#ifdef _DEBUG
|
||||
if(U_FAILURE(status))
|
||||
{
|
||||
fprintf(stderr, " Gack. Translit blew up with a %s\n", u_errorName(status));
|
||||
return src;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* now: start/limit point to the transliterated text */
|
||||
/* Transliterated is [buffer..pos.start) */
|
||||
*count = pos.start;
|
||||
|
@ -221,14 +213,6 @@ static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count,
|
|||
&textLimit,
|
||||
&status);
|
||||
|
||||
#ifdef _DEBUG
|
||||
if(U_FAILURE(status))
|
||||
{
|
||||
fprintf(stderr, " Gack. Translit(flush) blew up with a %s\n", u_errorName(status));
|
||||
return src;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* out: converted len */
|
||||
*count = textLimit;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue