From 09fa7ca4063f18c5c8389015e43d306f331a25f9 Mon Sep 17 00:00:00 2001 From: mka Date: Wed, 29 May 2013 10:03:04 +0000 Subject: [PATCH] fix for issue: after versioning operation and import operation the comments are lost --- Workspace/Siman/src/org/splat/simer/EditStepCommentAction.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Workspace/Siman/src/org/splat/simer/EditStepCommentAction.java b/Workspace/Siman/src/org/splat/simer/EditStepCommentAction.java index 98c4f82..51bc879 100644 --- a/Workspace/Siman/src/org/splat/simer/EditStepCommentAction.java +++ b/Workspace/Siman/src/org/splat/simer/EditStepCommentAction.java @@ -111,6 +111,7 @@ public class EditStepCommentAction extends DisplayStudyStepAction { LOG.debug("Error while trying to add comment: " + error.getMessage()); } } + doOpen(); //update all project elements, as comments are their attributes doDisplayComments(); return SUCCESS; } @@ -127,6 +128,7 @@ public class EditStepCommentAction extends DisplayStudyStepAction { } catch(InvalidParameterException error) { LOG.debug("Error while trying to remove comment: " + error.getMessage()); } + doOpen(); //update all project elements, as comments are their attributes doDisplayComments(); return SUCCESS; } @@ -143,6 +145,7 @@ public class EditStepCommentAction extends DisplayStudyStepAction { } catch(InvalidParameterException error) { LOG.debug("Error while trying to remove comment: " + error.getMessage()); } + doOpen(); //update all project elements, as comments are their attributes doDisplayComments(); return SUCCESS; } -- 2.39.2