ICU-451 fix NullTransliterator virtual function hiding

X-SVN-Rev: 1729
This commit is contained in:
Alan Liu 2000-07-01 00:14:12 +00:00
parent 795af33f57
commit 056697be0e
2 changed files with 0 additions and 17 deletions

View File

@ -15,11 +15,6 @@ Transliterator* NullTransliterator::clone(void) const {
return new NullTransliterator();
}
int32_t NullTransliterator::transliterate(Replaceable&, int32_t,
int32_t limit) const {
return limit;
}
void NullTransliterator::handleTransliterate(Replaceable& text, UTransPosition& offsets,
UBool isIncremental) const {
offsets.start = offsets.limit;

View File

@ -40,18 +40,6 @@ public:
*/
Transliterator* clone(void) const;
/**
* Transliterates a segment of a string. <code>Transliterator</code> API.
* @param text the string to be transliterated
* @param start the beginning index, inclusive; <code>0 <= start
* <= limit</code>.
* @param limit the ending index, exclusive; <code>start <= limit
* <= text.length()</code>.
* @return the new limit index
*/
virtual int32_t transliterate(Replaceable &text,
int32_t start, int32_t limit) const;
/**
* Implements {@link Transliterator#handleTransliterate}.
*/