(Log log, Action2<RaftLog, Boolean> callback)
| 217 | } |
| 218 | |
| 219 | public void appendLog(Log log, Action2<RaftLog, Boolean> callback) { |
| 220 | appendLog(log, null, callback); |
| 221 | } |
| 222 | |
| 223 | public void appendLog(Log log, Serializable result, Action2<RaftLog, Boolean> callback) { |
| 224 | if (result != null) |
nothing calls this directly
no test coverage detected