ICU-9265 Removed _isAttributeSubtag, which is no longer used, from uloc_tag.c

X-SVN-Rev: 31907
This commit is contained in:
Yoshito Umaoka 2012-06-05 20:08:04 +00:00
parent 694d6f2537
commit e7ca744bbd

View File

@ -309,20 +309,6 @@ _isPrivateuseVariantSubtag(const char* s, int32_t len) {
return FALSE;
}
static UBool
_isAttributeSubtag(const char* s, int32_t len) {
/*
* attribute = 3*8alphanum
*/
if (len < 0) {
len = (int32_t)uprv_strlen(s);
}
if (len >= 3 && len <= 8 && _isAlphaNumericString(s, len)) {
return TRUE;
}
return FALSE;
}
static UBool
_isExtensionSingleton(const char* s, int32_t len) {
/*