Skip to content
Snippets Groups Projects
Commit e6eb4a1f authored by buczekp's avatar buczekp
Browse files

[LMS-1949] minor: extracted constant

SVN: 19417
parent ab20871c
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,8 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ManagedUiDescription; ...@@ -36,6 +36,8 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ManagedUiDescription;
*/ */
public class ManagedPropertySection extends DisposableTabContent public class ManagedPropertySection extends DisposableTabContent
{ {
private static String ID_PREFIX = "managed_property_section_";
private final ManagedUiDescription uiDescription; private final ManagedUiDescription uiDescription;
public ManagedPropertySection(final String header, IViewContext<?> viewContext, public ManagedPropertySection(final String header, IViewContext<?> viewContext,
...@@ -53,7 +55,7 @@ public class ManagedPropertySection extends DisposableTabContent ...@@ -53,7 +55,7 @@ public class ManagedPropertySection extends DisposableTabContent
public String createID() public String createID()
{ {
return "managed_property_section_" + Format.hyphenize(header); return ID_PREFIX + Format.hyphenize(header);
} }
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment