From e200217c5d660b10423bced8b2b386e194e00559 Mon Sep 17 00:00:00 2001 From: Bruno Sinou Date: Thu, 15 Oct 2015 07:25:30 +0000 Subject: [PATCH] Remove old dirty system.out.println() call git-svn-id: https://svn.argeo.org/commons/trunk@8488 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../security/ui/commands/OpenHomePerspective.java | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/org.argeo.security.ui/src/org/argeo/security/ui/commands/OpenHomePerspective.java b/org.argeo.security.ui/src/org/argeo/security/ui/commands/OpenHomePerspective.java index 49a657581..f6aa0d19e 100644 --- a/org.argeo.security.ui/src/org/argeo/security/ui/commands/OpenHomePerspective.java +++ b/org.argeo.security.ui/src/org/argeo/security/ui/commands/OpenHomePerspective.java @@ -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; } - } -- 2.30.2