diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-06-09 23:59:26 +0200 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-06-10 00:05:00 +0200 |
commit | afed66bb9efc0a8838f2061c4a3aa0befec0f98c (patch) | |
tree | 4eb6c735fb33f68c4ff97711ac56cfd2cf92c7dc /ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp | |
parent | 4ec75539dba8cefef16e56f02c62755a9aa9c60b (diff) | |
download | php-git-afed66bb9efc0a8838f2061c4a3aa0befec0f98c.tar.gz |
BreakIter: Removed getAvailableLocales/getHashCode
Diffstat (limited to 'ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp')
-rw-r--r-- | ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp b/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp index 5ccef90707..85eceb3f30 100644 --- a/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp +++ b/ext/intl/breakiterator/rulebasedbreakiterator_methods.cpp @@ -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; |