]> SALOME platform Git repositories - tools/siman.git/blobdiff - Workspace/Siman/src/org/splat/simer/EditStudyAction.java
Salome HOME
Modifications to respect PMD rules.
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / EditStudyAction.java
index 2cef5d01db2c01fdfff7790cd70b7efe0c26fb0e..755ba3faef571bf7a0600e27b80d1413479d5915 100644 (file)
@@ -52,14 +52,14 @@ public class EditStudyAction extends DisplayStudyStepAction {
 
     public String doEdition () {
          try {
-        mystudy = getOpenStudy();
+        _openStudy = getOpenStudy();
 
-        Execute  todo   = Execute.valueOf(action);
-        Study    study  = mystudy.getStudyObject();
+        Execute  todo   = Execute.valueOf(_action);
+        Study    study  = _openStudy.getStudyObject();
         
         if      (todo == Execute.publish) getStudyService().moveToPublic(study);
         else if (todo == Execute.promote) getStudyService().moveToReference(study);
-        mystudy.getPopup().setContext("study", mystudy.getStudyRights());   // The context has changed
+        _openStudy.getPopup().setContext("study", _openStudy.getStudyRights());   // The context has changed
         
         setMenuProperty("study");
         setTitleProperty("study");