ICU-4092 Remove unused code.

X-SVN-Rev: 16836
This commit is contained in:
George Rhoten 2004-11-12 01:31:18 +00:00
parent 9f6f294e5f
commit dd21bef768
2 changed files with 7 additions and 3 deletions

View file

@ -103,6 +103,8 @@ UBool ICU_Utility::escapeUnprintable(UnicodeString& result, UChar32 c) {
* For example, in the string "abc'hide'h", the 'h' in "hide" will not be
* found by a search for 'h'.
*/
// FOR FUTURE USE. DISABLE FOR NOW for coverage reasons.
/*
int32_t ICU_Utility::quotedIndexOf(const UnicodeString& text,
int32_t start, int32_t limit,
UChar charToFind) {
@ -119,6 +121,7 @@ int32_t ICU_Utility::quotedIndexOf(const UnicodeString& text,
}
return -1;
}
*/
/**
* Skip over a sequence of zero or more white space characters at pos.

View file

@ -71,9 +71,10 @@ class U_COMMON_API ICU_Utility /* not : public UObject because all methods are s
* @param c character to search for
* @return Offset of the first instance of c, or -1 if not found.
*/
static int32_t quotedIndexOf(const UnicodeString& text,
int32_t start, int32_t limit,
UChar c);
//?FOR FUTURE USE. DISABLE FOR NOW for coverage reasons.
// static int32_t quotedIndexOf(const UnicodeString& text,
// int32_t start, int32_t limit,
// UChar c);
/**
* Skip over a sequence of zero or more white space characters at pos.