Use explicit "appName" vs. "name" property

i.e. when running the app, pass

    java -jar bitsquare.jar --appName Alice

vs.

    java -jar bitsquare.jar --name Alice
This commit is contained in:
Chris Beams 2014-11-10 01:08:34 +01:00
parent e8986aa7a2
commit ccc369307c
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73

View file

@ -42,7 +42,7 @@ import net.tomp2p.connection.Ports;
* Configures all non-UI modules necessary to run a Bitsquare application.
*/
public class AppModule extends BitsquareModule {
public static final String APP_NAME_KEY = "name";
public static final String APP_NAME_KEY = "appName";
public AppModule(Properties properties) {
super(properties);