Removed unnecessary changes.

This commit is contained in:
Clinton Alexander
2016-06-10 11:38:14 +01:00
committed by Andras Slemmer
parent 5a4215a312
commit 7a4a1363cb
2 changed files with 7 additions and 7 deletions

View File

@ -52,7 +52,7 @@ class ConfigurationException(message: String) : Exception(message)
* Listed clientAPI classes are assumed to have to take a single APIServer constructor parameter
* @param clock The clock used within the node and by all protocols etc
*/
open class Node(dir: Path, val p2pAddr: HostAndPort, configuration: NodeConfiguration,
class Node(dir: Path, val p2pAddr: HostAndPort, configuration: NodeConfiguration,
networkMapAddress: NodeInfo?, advertisedServices: Set<ServiceType>,
clock: Clock = NodeClock(),
val clientAPIs: List<Class<*>> = listOf()) : AbstractNode(dir, configuration, networkMapAddress, advertisedServices, clock) {