From d54da35a756df4c743b1ba9e55743f9d447f4a77 Mon Sep 17 00:00:00 2001
From: buczekp <buczekp>
Date: Mon, 3 May 2010 12:47:29 +0000
Subject: [PATCH] [LMS-1504] removed action=VIEW from material and project
 locators (it is the default action)

SVN: 15725
---
 .../client/application/ui/columns/framework/LinkExtractor.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/columns/framework/LinkExtractor.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/columns/framework/LinkExtractor.java
index 0b1b947cd48..f4c7fa3a49b 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/columns/framework/LinkExtractor.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/ui/columns/framework/LinkExtractor.java
@@ -17,7 +17,6 @@
 package ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.columns.framework;
 
 import ch.systemsx.cisd.openbis.generic.client.web.client.application.locator.ProjectLocatorResolver;
-import ch.systemsx.cisd.openbis.generic.client.web.client.application.locator.ViewLocator;
 import ch.systemsx.cisd.openbis.generic.shared.basic.IEntityInformationHolder;
 import ch.systemsx.cisd.openbis.generic.shared.basic.PermlinkUtilities;
 import ch.systemsx.cisd.openbis.generic.shared.basic.URLMethodWithParameters;
@@ -64,7 +63,6 @@ public class LinkExtractor
             return null;
         }
         URLMethodWithParameters url = new URLMethodWithParameters("");
-        url.addParameter(ViewLocator.ACTION_PARAMETER, ViewLocator.PERMLINK_ACTION);
         url.addParameter(PermlinkUtilities.ENTITY_KIND_PARAMETER_KEY,
                 ProjectLocatorResolver.PROJECT);
         url.addParameter(ProjectLocatorResolver.CODE_PARAMETER_KEY, p.getCode());
@@ -79,7 +77,6 @@ public class LinkExtractor
             return null;
         }
         URLMethodWithParameters url = new URLMethodWithParameters("");
-        url.addParameter(ViewLocator.ACTION_PARAMETER, ViewLocator.PERMLINK_ACTION);
         url.addParameter(PermlinkUtilities.ENTITY_KIND_PARAMETER_KEY, m.getEntityKind().name());
         url.addParameter("code", m.getCode());
         url.addParameter("type", m.getMaterialType().getCode());// FIXME: move to common
-- 
GitLab