about summary refs log tree commit diff stats
path: root/client/trunk/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'client/trunk/src/com')
-rw-r--r--client/trunk/src/com/fourisland/instadisc/InstaDiscApp.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/trunk/src/com/fourisland/instadisc/InstaDiscApp.java b/client/trunk/src/com/fourisland/instadisc/InstaDiscApp.java index e891d32..eac82d9 100644 --- a/client/trunk/src/com/fourisland/instadisc/InstaDiscApp.java +++ b/client/trunk/src/com/fourisland/instadisc/InstaDiscApp.java
@@ -66,10 +66,10 @@ public class InstaDiscApp extends SingleFrameApplication {
66 Thread th = new Thread(new FirstRunWizard()); 66 Thread th = new Thread(new FirstRunWizard());
67 th.start(); 67 th.start();
68 } else { 68 } else {
69 if ((args.length > 0) && (args[0].equals("-r"))) { 69 XmlRpc xmlrpc = new XmlRpc("requestRetained");
70 XmlRpc xmlrpc = new XmlRpc("requestRetained"); 70 xmlrpc.execute();
71 xmlrpc.execute(); 71
72 } else { 72 if (!((args.length > 0) && (args[0].equals("-r")))) {
73 launch(InstaDiscApp.class, args); 73 launch(InstaDiscApp.class, args);
74 } 74 }
75 } 75 }