Salome HOME
0023299: [CEA] Finalize multi-study removal
[modules/kernel.git] / src / KernelHelpers / SALOME_StudyEditor.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 21727e7..fe79af5
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -30,18 +30,6 @@ void SALOME_StudyEditor::setStudy(SALOMEDS::Study_ptr study) {
   _sbuilder = _study->NewBuilder();    
 }
 
-void SALOME_StudyEditor::setStudyById(int studyId) {
-  this->setStudy(KERNEL::getStudyManager()->GetStudyByID(studyId));
-}
-
-int SALOME_StudyEditor::getStudyId() {
-  if ( _study->_is_nil() ) return UNDEFINED; 
-  return _study->StudyId();
-}
-
-SALOME_StudyEditor::SALOME_StudyEditor(int studyId) {
-  this->setStudyById(studyId);
-}
 SALOME_StudyEditor::SALOME_StudyEditor(SALOMEDS::Study_ptr study) {
   this->setStudy(study);
 }