Browse Source

Removed the rather superfluous private method ConnectionCluster::getConnectionFromRing.

Daniele Alessandri 15 years ago
parent
commit
ca7f3e294c
1 changed files with 1 additions and 5 deletions
  1. 1 5
      lib/Predis.php

+ 1 - 5
lib/Predis.php

@@ -790,17 +790,13 @@ class ConnectionCluster implements IConnection, \IteratorAggregate {
         $this->_ring->add($connection);
         $this->_ring->add($connection);
     }
     }
 
 
-    private function getConnectionFromRing(Command $command) {
-        return $this->_ring->get($command->getHash());
-    }
-
     private function getConnection(Command $command) {
     private function getConnection(Command $command) {
         if ($command->canBeHashed() === false) {
         if ($command->canBeHashed() === false) {
             throw new ClientException(
             throw new ClientException(
                 sprintf("Cannot send '%s' commands to a cluster of connections.", $command->getCommandId())
                 sprintf("Cannot send '%s' commands to a cluster of connections.", $command->getCommandId())
             );
             );
         }
         }
-        return $this->getConnectionFromRing($command);
+        return $this->_ring->get($command->getHash());
     }
     }
 
 
     public function getConnectionById($id = null) {
     public function getConnectionById($id = null) {