(StateMachine sm)
| 302 | } |
| 303 | |
| 304 | public Raft(StateMachine sm) throws Exception { |
| 305 | this(sm, null, null, null, "Zeze.Raft.Server"); |
| 306 | } |
| 307 | |
| 308 | public Raft(StateMachine sm, String RaftName) throws Exception { |
| 309 | this(sm, RaftName, null, null, "Zeze.Raft.Server"); |
nothing calls this directly
no test coverage detected