Skip to content

Commit abafbf5

Browse files
committed
System Touch
1 parent 178c6d3 commit abafbf5

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

source/Main.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Main
3232

3333
public Main()
3434
{
35-
System.out.println();
35+
System.out.println("-");
3636

3737
System.out.println("[ Java National Finance Engine v.28.1.1 Software Processes Starting ]");
3838

@@ -44,7 +44,7 @@ public Main()
4444

4545
System.out.println(". ND51 North Carolina Labors & Standards A5501 ANationals Standards of Cary, NC 2807 .");
4646

47-
System.out.println();
47+
System.out.println("-");
4848

4949
CommonRails.printSystemComponent(this, this.hashCode(),". Java™ National Finance Engine v.2811.1 v.11.1 .");
5050

source/bitcoin/base/BitcoinBase.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ public class BitcoinBase
3030

3131
protected final String BITCOIN_PORT = "";
3232

33-
protected final String BITCOIND_START_ARGS = STR."-regtest -daemon -rpcpassword=\"\{BITCOIN_ROOT_PASSWORD}\" -rpcport=\"\{BITCOIN_PORT}\"";
33+
protected final String BITCOIND_START_ARGS = "-regtest -daemon -rpcpassword="+BITCOIN_ROOT_PASSWORD+" -rpcport="+BITCOIN_PORT;
3434

35-
protected final String BITCOIN_CLI_LOAD_WALLET_ARGS = STR."-named loadwallet -rpcpassword=\"\{BITCOIN_ROOT_PASSWORD}\" -rpcport=\"\{BITCOIN_PORT}\" wallet_name=\"United States\"";
35+
protected final String BITCOIN_CLI_LOAD_WALLET_ARGS = "-named loadwallet -rpcpassword="+BITCOIN_ROOT_PASSWORD+" -rpcport="+BITCOIN_PORT+" wallet_name=\"United States\"";
3636

37-
protected final String BITCOIN_GET_WALLET_NAME_ARGS = STR."-named getwalletinfo -rpcpassword=\"\{BITCOIN_ROOT_PASSWORD}\" -rpcport=\"\{BITCOIN_PORT}\" wallet_name\"United States\"";
37+
protected final String BITCOIN_GET_WALLET_NAME_ARGS = "-named getwalletinfo -rpcpassword="+BITCOIN_ROOT_PASSWORD+" -rpcport="+BITCOIN_PORT+" wallet_name\"United States\"";
3838

3939
protected final String BITCOIN_CLI_DELETE_WALLET_CMD = "rm -r";
4040

41-
protected final String BITCOIN_CLI_UNLOAD_WALLET_ARGS = STR."-named unloadwallet -rpcpassword=\"\{BITCOIN_ROOT_PASSWORD}\" -rpcport=\"\{BITCOIN_PORT}\" wallet_name=\"United States\"";
41+
protected final String BITCOIN_CLI_UNLOAD_WALLET_ARGS = "-named unloadwallet -rpcpassword="+BITCOIN_ROOT_PASSWORD+" -rpcport="+BITCOIN_PORT+" wallet_name=\"United States\"";
4242

4343
protected final String BITCOIN_CLI_RENAME_WALLET_ARGS = "";
4444

45-
protected final String BITCOIN_CLI_ADD_NEW_WALLET_ARGS = STR."bitcoin-cli createwallet -rpcpassword=\"\{BITCOIN_ROOT_PASSWORD}\" -rpcport=\"\{BITCOIN_PORT}\"";
45+
protected final String BITCOIN_CLI_ADD_NEW_WALLET_ARGS = "bitcoin-cli createwallet -rpcpassword="+BITCOIN_ROOT_PASSWORD+" -rpcport="+BITCOIN_PORT;
4646

4747
protected final String BITCOIN_CLI_SEND_LOCAL_WALLET_TO_REMOTE_WALLET_ARGS = "";
4848

@@ -58,9 +58,9 @@ public BitcoinBase(NitroWebExpress.Aspect aspect)
5858

5959
BitcoinAmericaAndNewYorkDate ESTDate = new BitcoinAmericaAndNewYorkDate();
6060

61-
CommonRails.printSystemComponent(this, this.hashCode(), STR."WebExpress::Bitcoin >> opens in North Carolina on [Date: \{ESTDate.EST_Time}]");
61+
CommonRails.printSystemComponent(this, this.hashCode(), "WebExpress::Bitcoin >> opens in North Carolina on [Date: "+ESTDate.EST_Time);
6262

63-
CommonRails.printSystemComponent(this, this.hashCode(), STR."WebExpress::Bitcoin >> opens in Japan on [Date: \{JAPANDate.PACIFIC_Time}]");
63+
CommonRails.printSystemComponent(this, this.hashCode(), "WebExpress::Bitcoin >> opens in Japan on [Date: "+JAPANDate.PACIFIC_Time);
6464
}
6565

6666
public void send_message(StringBuffer buffer)

source/server/nitro/NitroWebExpress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public class NitroWebExpress extends WebExpress
5050

5151
public NitroWebExpress(final Integer PORT, final String HOST, final String THREAD_NAME)
5252
{
53-
CommonRails.printSystemComponent(this, 8, STR.". National ID initialized: \{this.NATIONALID.EIGHT_DIGITS} .");
53+
CommonRails.printSystemComponent(this, 8, ". National ID initialized: "+this.NATIONALID.EIGHT_DIGITS+" .");
5454

5555
CommonRails.printSystemComponent(this, this.hashCode(),". Nitro version of WebExpress Starting .");
5656

source/server/nitro/WebExpress.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public WebExpress(final String HOST, final Integer PORT, final String THREAD_NAM
5151

5252
if(TELNET_PROXY_ENABLED)
5353
{
54-
CommonRails.printSystemComponent(this, this.hashCode(), STR.". \{THREAD_NAME} \{HOST}:\{PORT} [Telnet Proxy Enabled] .");
54+
CommonRails.printSystemComponent(this, this.hashCode(), ". "+THREAD_NAME+" "+HOST+" : "+PORT+" Telnet Proxy Enabled .");
5555

5656
this.telnet_installer = new TelnetInstaller(this);
5757

@@ -67,7 +67,7 @@ public WebExpress(final String HOST, final Integer PORT, final String THREAD_NAM
6767
}
6868
else
6969
{
70-
CommonRails.printSystemComponent(this, this.hashCode(), STR.". Main starts \{THREAD_NAME} \{HOST}:\{PORT} .");
70+
CommonRails.printSystemComponent(this, this.hashCode(), ". Main starts "+THREAD_NAME+" HOST : "+PORT+" .");
7171

7272
this.message_queue_sorter = new MessageQueueSorter(this);
7373

0 commit comments

Comments
 (0)