@@ -20,7 +20,7 @@ public class TraderModule
2020{
2121 protected String hash = "0xDA717018470E213F" ;
2222
23- protected NitroWebExpress .Aspect aspect ;
23+ protected NitroWebExpress .Aspect ASPECT ;
2424
2525 protected final String BITCOIN_CLI = "bitcoin-cli" ;
2626
@@ -52,11 +52,11 @@ public class TraderModule
5252
5353 protected MessageOrderer bitcoin_message_orderer = new MessageOrderer (this );
5454
55- public TraderModule (final NitroWebExpress .Aspect aspect , final String title )
55+ public TraderModule (final NitroWebExpress .Aspect ASPECT , final String TITLE )
5656 {
57- this .aspect = aspect ;
57+ this .ASPECT = ASPECT ;
5858
59- this .TITLE = title ;
59+ this .TITLE = TITLE ;
6060
6161 BitcoinAsiaAndTokyoDate JAPANDate = new BitcoinAsiaAndTokyoDate ();
6262
@@ -67,17 +67,17 @@ public TraderModule(final NitroWebExpress.Aspect aspect, final String title)
6767 CommonRails .printSystemComponent (this , this .hashCode (), ". WebExpress Bitcoin >> opens in Japan on Date " +JAPANDate .PACIFIC_Time +" . " );
6868 }
6969
70- public void send_message (StringBuffer buffer )
70+ public void send_message (final StringBuffer BUFFER )
7171 {
7272
7373 }
7474
75- public void send_message (String message )
75+ public void send_message (final String MESSAGE )
7676 {
7777
7878 }
7979
80- public void start_server_instance (final String url )
80+ public void start_server_instance (final String URL )
8181 {
8282 try
8383 {
@@ -92,7 +92,7 @@ public void start_server_instance(final String url)
9292 }
9393 }
9494
95- public void load_wallet (final String url ) throws IOException
95+ public void load_wallet (final String URL ) throws IOException
9696 {
9797 try
9898 {
@@ -107,7 +107,7 @@ public void load_wallet(final String url) throws IOException
107107 }
108108 }
109109
110- public String get_wallet_name (final String url )
110+ public String get_wallet_name (final String URL )
111111 {
112112 try
113113 {
@@ -148,7 +148,7 @@ public String get_wallet_name(final String url)
148148 return "-1" ;
149149 }
150150
151- public void delete_wallet (final String url ) throws IOException
151+ public void delete_wallet (final String URL ) throws IOException
152152 {
153153 final String SEPARATOR = "/" ;
154154
@@ -164,7 +164,7 @@ public void delete_wallet(final String url) throws IOException
164164
165165 final String WALLET_DIR = SPECIFIC_DIR +SEPARATOR +REGTEST ;
166166
167- final String WALLET_NAME = this .get_wallet_name (url );
167+ final String WALLET_NAME = this .get_wallet_name (URL );
168168
169169 final String COMPLETE_URL = WALLET_DIR +SEPARATOR +WALLET_NAME ;
170170
@@ -181,7 +181,7 @@ public void delete_wallet(final String url) throws IOException
181181 }
182182 }
183183
184- public void unload_wallet (final String url ) throws IOException
184+ public void unload_wallet (final String URL ) throws IOException
185185 {
186186 try
187187 {
@@ -196,7 +196,7 @@ public void unload_wallet(final String url) throws IOException
196196 }
197197 }
198198
199- public void rename_wallet (final String url )
199+ public void rename_wallet (final String URL )
200200 {
201201 try
202202 {
@@ -211,7 +211,7 @@ public void rename_wallet(final String url)
211211 }
212212 }
213213
214- public void add_new_wallet (final String url )
214+ public void add_new_wallet (final String URL )
215215 {
216216 try
217217 {
@@ -226,7 +226,7 @@ public void add_new_wallet(final String url)
226226 }
227227 }
228228
229- public void send_local_wallet_to_remote_wallet (final String url )
229+ public void send_local_wallet_to_remote_wallet (final String URL )
230230 {
231231 try
232232 {
0 commit comments