BreakIter: Removed getAvailableLocales/getHashCode

This commit is contained in:
Gustavo André dos Santos Lopes 2012-06-09 23:59:26 +02:00
parent 4ec75539db
commit afed66bb9e
8 changed files with 0 additions and 84 deletions

View file

@ -98,22 +98,6 @@ U_CFUNC PHP_METHOD(RuleBasedBreakIterator, __construct)
}
}
U_CFUNC PHP_FUNCTION(rbbi_hash_code)
{
BREAKITER_METHOD_INIT_VARS;
if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "O",
&object, BreakIterator_ce_ptr) == FAILURE) {
intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
"rbbi_hash_code: bad arguments", 0 TSRMLS_CC);
RETURN_FALSE;
}
BREAKITER_METHOD_FETCH_OBJECT;
RETURN_LONG(fetch_rbbi(bio)->hashCode());
}
U_CFUNC PHP_FUNCTION(rbbi_get_rules)
{
BREAKITER_METHOD_INIT_VARS;