| author | Vikas Mishra | 2012-03-19 07:22:53 (EDT) |
|---|---|---|
| committer | Manik Kishore | 2012-06-19 07:22:07 (EDT) |
| commit | 508dfd18727d722e70132de425e79a6e98351db9 (patch) (side-by-side diff) | |
| tree | 1271755596ee804bda13d1be1fe648373e8ecaf6 | |
| parent | 0e0e6c3f3e86632eb544427c758f7a25c3aecf41 (diff) | |
| download | org.eclipse.stardust.ui.web-508dfd18727d722e70132de425e79a6e98351db9.zip org.eclipse.stardust.ui.web-508dfd18727d722e70132de425e79a6e98351db9.tar.gz org.eclipse.stardust.ui.web-508dfd18727d722e70132de425e79a6e98351db9.tar.bz2 | |
Jira-ID: CRNT-24245
corrected findCaseSourceDescriptors() logic for key descriptor
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@54641 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | views-common/src/main/java/org/eclipse/stardust/ui/web/viewscommon/utils/CommonDescriptorUtils.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/views-common/src/main/java/org/eclipse/stardust/ui/web/viewscommon/utils/CommonDescriptorUtils.java b/views-common/src/main/java/org/eclipse/stardust/ui/web/viewscommon/utils/CommonDescriptorUtils.java index 4189e18..d0945a6 100644 --- a/views-common/src/main/java/org/eclipse/stardust/ui/web/viewscommon/utils/CommonDescriptorUtils.java +++ b/views-common/src/main/java/org/eclipse/stardust/ui/web/viewscommon/utils/CommonDescriptorUtils.java @@ -660,9 +660,8 @@ public class CommonDescriptorUtils for (DataPath path : datas)
{
DataPath caseDataPath = caseDescriptorDefinitions.get(path.getId());
- if (!dataPathMap.containsKey(path.getId()) && null != caseDataPath
- && caseDataPath.getMappedType().equals(path.getMappedType())
- && !CommonDescriptorUtils.isStructuredData(path))
+ if (path.isKeyDescriptor() && !dataPathMap.containsKey(path.getId()) && null != caseDataPath
+ && caseDataPath.getMappedType().equals(path.getMappedType()))
{
dataPathMap.put(path.getId(), path);
}
|

