Skip to content

Commit

Permalink
removed dead code.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasff committed Jan 20, 2011
1 parent a15d84c commit 8c83275
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion php_redis.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ PHP_METHOD(Redis, unsubscribe);

PHP_METHOD(Redis, getOption);
PHP_METHOD(Redis, setOption);
PHP_METHOD(Redis, setOptions);

#ifdef PHP_WIN32
#define PHP_REDIS_API __declspec(dllexport)
Expand Down
8 changes: 0 additions & 8 deletions redis.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ static zend_function_entry redis_functions[] = {
/* options */
PHP_ME(Redis, getOption, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Redis, setOption, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Redis, setOptions, NULL, ZEND_ACC_PUBLIC)

/* aliases */
PHP_MALIAS(Redis, open, connect, NULL, ZEND_ACC_PUBLIC)
Expand Down Expand Up @@ -4964,12 +4963,5 @@ PHP_METHOD(Redis, setOption) {
}
/* }}} */

/* {{{ proto string Redis::setOptions(array $options)
*/
PHP_METHOD(Redis, setOptions) {

}
/* }}} */

/* vim: set tabstop=4 softtabstop=4 noexpandtab shiftwidth=4: */

0 comments on commit 8c83275

Please sign in to comment.