You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by "Thomas Koch (Created) (JIRA)" <ji...@apache.org> on 2011/11/04 08:59:00 UTC

[jira] [Created] (ZOOKEEPER-1286) QuorumPeer contains unused constructor

QuorumPeer contains unused constructor
--------------------------------------

                 Key: ZOOKEEPER-1286
                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1286
             Project: ZooKeeper
          Issue Type: Sub-task
            Reporter: Thomas Koch
            Assignee: Thomas Koch
            Priority: Trivial


The following constructor in QuorumPeer seems to be never used, starting at line 370 in my branch:
{code:java}
    /**
     * For backward compatibility purposes, we instantiate QuorumMaj by default.
     */

    public QuorumPeer(Map<Long, QuorumServer> quorumPeers, File dataDir,
            File dataLogDir, int electionType,
            long myid, int tickTime, int initLimit, int syncLimit,
            ServerCnxnFactory cnxnFactory) throws IOException {
        this(quorumPeers, dataDir, dataLogDir, electionType, myid, tickTime,
                initLimit, syncLimit, cnxnFactory,
                new QuorumMaj(countParticipants(quorumPeers)));
    }
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira