From bd588c9f8075bf5affa1785d6a273ab58b49bb95 Mon Sep 17 00:00:00 2001
From: buczekp <buczekp>
Date: Tue, 18 Jan 2011 12:30:45 +0000
Subject: [PATCH] [LMS-1949] minor: code cleanup

SVN: 19468
---
 .../generic/shared/basic/dto/ManagedEntityProperty.java       | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/basic/dto/ManagedEntityProperty.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/basic/dto/ManagedEntityProperty.java
index 9122ac23562..eda4b1cecad 100644
--- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/basic/dto/ManagedEntityProperty.java
+++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/basic/dto/ManagedEntityProperty.java
@@ -97,9 +97,7 @@ public class ManagedEntityProperty implements IEntityProperty, IManagedEntityPro
 
     public String getValue()
     {
-        // TODO 2011-01-12, Piotr Buczek: remove special handling after testing
-        String delegatedValue = delegatedProperty.getValue();
-        return delegatedValue == null ? null : "(managed) " + delegatedValue;
+        return delegatedProperty.getValue();
     }
 
     public void setValue(String value)
-- 
GitLab