ICU-5410 Comment out unused code.

X-SVN-Rev: 20673
This commit is contained in:
George Rhoten 2006-11-16 20:32:23 +00:00
parent 439947f270
commit 596bee3007
2 changed files with 3 additions and 3 deletions

View File

@ -301,7 +301,7 @@ const CharsetMatch * const *CharsetDetector::detectAll(int32_t &maxMatchesFound,
return resultArray;
}
const char *CharsetDetector::getCharsetName(int32_t index, UErrorCode &status) const
/*const char *CharsetDetector::getCharsetName(int32_t index, UErrorCode &status) const
{
if( index > fCSRecognizers_size-1 || index < 0) {
status = U_INDEX_OUTOFBOUNDS_ERROR;
@ -310,7 +310,7 @@ const char *CharsetDetector::getCharsetName(int32_t index, UErrorCode &status) c
} else {
return fCSRecognizers[index]->getName();
}
}
}*/
U_NAMESPACE_END

View File

@ -45,7 +45,7 @@ public:
UBool getStripTagsFlag() const;
const char *getCharsetName(int32_t index, UErrorCode& status) const;
// const char *getCharsetName(int32_t index, UErrorCode& status) const;
static int32_t getDetectableCount();
};