ICU-4092 Remove dead debugging code

X-SVN-Rev: 17094
This commit is contained in:
George Rhoten 2005-01-07 01:56:47 +00:00
parent 53dc214ce0
commit 7761c40699
2 changed files with 4 additions and 2 deletions

View File

@ -117,11 +117,13 @@ void RuleCharacterIterator::jumpahead(int32_t count) {
_advance(count);
}
/*
UnicodeString& RuleCharacterIterator::toString(UnicodeString& result) const {
int32_t b = pos.getIndex();
text.extract(0, b, result);
return result.append((UChar) 0x7C /*'|'*/).append(text, b, 0x7FFFFFFF);
return result.append((UChar) 0x7C).append(text, b, 0x7FFFFFFF); // Insert '|' at index
}
*/
UChar32 RuleCharacterIterator::_current() const {
if (buf != 0) {

View File

@ -204,7 +204,7 @@ public:
* @param result output parameter to receive a string
* representation of this object
*/
UnicodeString& toString(UnicodeString& result) const;
// UnicodeString& toString(UnicodeString& result) const;
private:
/**