ICU-4092 Remove dead debugging code
X-SVN-Rev: 17094
This commit is contained in:
parent
53dc214ce0
commit
7761c40699
@ -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) {
|
||||
|
@ -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:
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user