From 3218a0b8d7b737bfbda6d53cf603cd6194bd6169 Mon Sep 17 00:00:00 2001 From: buczekp <buczekp> Date: Thu, 16 Sep 2010 08:45:57 +0000 Subject: [PATCH] [LMS-1597] missing in commit SVN: 17856 --- .../application/locator/BrowserLocatorResolver.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/locator/BrowserLocatorResolver.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/locator/BrowserLocatorResolver.java index e2dc3671132..5635607551a 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/locator/BrowserLocatorResolver.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/client/web/client/application/locator/BrowserLocatorResolver.java @@ -45,7 +45,7 @@ public class BrowserLocatorResolver extends AbstractViewLocatorResolver openSampleBrowser(groupOrNull, entityTypeOrNull); break; case MATERIAL: - openMaterialBrowser(); + openMaterialBrowser(entityTypeOrNull); break; default: throw new UserFailureException("Browsing " + entityKind.getDescription() @@ -66,10 +66,10 @@ public class BrowserLocatorResolver extends AbstractViewLocatorResolver initialGroupOrNull, initialSampleTypeOrNull)); } - private void openMaterialBrowser() + private void openMaterialBrowser(String initialMaterialTypeOrNull) { - // TODO 2010-03-09, Piotr Buczek: optionally select material type - DispatcherHelper.dispatchNaviEvent(new ComponentProvider(viewContext).getMaterialBrowser()); + DispatcherHelper.dispatchNaviEvent(new ComponentProvider(viewContext) + .getMaterialBrowser(initialMaterialTypeOrNull)); } } \ No newline at end of file -- GitLab