diff options
| author | Damien Regad <dregad@mantisbt.org> | 2022-03-20 12:59:52 +0100 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2022-03-30 10:38:22 +0200 |
| commit | 5fe44f1f7847458654177cbeedd7be7d6bc7efcf (patch) | |
| tree | bc7fab0e65327b728481a65c6b24031c7d87b245 /adodb-memcache.lib.inc.php | |
| parent | 5c0a3a6bca0cc87587b4d6307700fd69a1a460d9 (diff) | |
| download | adodb-5fe44f1f7847458654177cbeedd7be7d6bc7efcf.tar.gz adodb-5fe44f1f7847458654177cbeedd7be7d6bc7efcf.tar.bz2 adodb-5fe44f1f7847458654177cbeedd7be7d6bc7efcf.zip | |
Remove duplicate/unused $memCacheLibrary property
Both $memcacheLibrary and $memCacheLibrary properties were declared,
but only the former was being used.
Diffstat (limited to 'adodb-memcache.lib.inc.php')
| -rw-r--r-- | adodb-memcache.lib.inc.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/adodb-memcache.lib.inc.php b/adodb-memcache.lib.inc.php index 33820339..fc468171 100644 --- a/adodb-memcache.lib.inc.php +++ b/adodb-memcache.lib.inc.php @@ -38,13 +38,6 @@ class ADODB_Cache_MemCache public $createdir = false; /** - * populated with the proper library on connect - * and is used later when there are differences in specific calls - * between memcache and memcached - */ - private $memCacheLibrary = false; - - /** * @var array of hosts */ private $hosts; @@ -71,6 +64,9 @@ class ADODB_Cache_MemCache /** * @var Memcache|Memcached Handle for the Memcache library + * + * Populated with the proper library on connect, used later when + * there are differences in specific calls between memcache and memcached */ private $memcacheLibrary = false; |
