From a4cf7a0aeb5bff71399f8d329d907ff708bae00e Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Mon, 10 Nov 2014 00:41:36 +0100 Subject: [PATCH] Polish whitespace --- src/main/java/io/bitsquare/app/cli/SeedNode.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/io/bitsquare/app/cli/SeedNode.java b/src/main/java/io/bitsquare/app/cli/SeedNode.java index d148f91d56..aebd7b731b 100644 --- a/src/main/java/io/bitsquare/app/cli/SeedNode.java +++ b/src/main/java/io/bitsquare/app/cli/SeedNode.java @@ -53,7 +53,7 @@ public class SeedNode { int port = defaultNode.getPort(); // Passed program args will override the properties of the default bootstrapNode - // So you can use the same id but different ports (e.g. running several nodes on one server with + // So you can use the same id but different ports (e.g. running several nodes on one server with // different ports) if (namespace.getString(BOOTSTRAP_NODE_ID_KEY) != null) id = namespace.getString(BOOTSTRAP_NODE_ID_KEY); @@ -108,8 +108,8 @@ public class SeedNode { } peer = null; } - - + + /*public static void main(String[] args) throws Exception { ArgumentParser parser = new ArgumentParser(); Namespace namespace = parser.parseArgs(args); @@ -119,7 +119,7 @@ public class SeedNode { int port = defaultNode.getPort(); // Passed program args will override the properties of the default bootstrapNode - // So you can use the same id but different ports (e.g. running several nodes on one server with + // So you can use the same id but different ports (e.g. running several nodes on one server with // different ports) if (namespace.getString(ArgumentParser.SEED_ID_FLAG) != null) id = namespace.getString(ArgumentParser.SEED_ID_FLAG);