Remove old dirty system.out.println() call
authorBruno Sinou <bsinou@argeo.org>
Thu, 15 Oct 2015 07:25:30 +0000 (07:25 +0000)
committerBruno Sinou <bsinou@argeo.org>
Thu, 15 Oct 2015 07:25:30 +0000 (07:25 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@8488 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.security.ui/src/org/argeo/security/ui/commands/OpenHomePerspective.java

index 49a6575815fc2a26b600ad470a541b0d944a4bac..f6aa0d19e02b624737d314cebaf1ef8ef10e19ee 100644 (file)
@@ -25,14 +25,8 @@ import org.eclipse.ui.handlers.HandlerUtil;
 
 /** Default action of the user menu */
 public class OpenHomePerspective extends AbstractHandler {
-
-       public Object execute(ExecutionEvent event) throws ExecutionException {
-               
-               
-               String defaultCmdId = System.getProperty(
-                               "argeo.try", "");
-               System.out.println("System prop" + defaultCmdId );
-               
+       
+       public Object execute(ExecutionEvent event) throws ExecutionException {         
                try {
                        HandlerUtil.getActiveSite(event).getWorkbenchWindow()
                                        .openPage(UserHomePerspective.ID, null);
@@ -41,5 +35,4 @@ public class OpenHomePerspective extends AbstractHandler {
                }
                return null;
        }
-
 }