]> SALOME platform Git repositories - tools/libbatch.git/blobdiff - src/COORM/BatchManager_COORM.cxx
Salome HOME
Fix bug with WallTime in OAR (minutes instead of seconds)
[tools/libbatch.git] / src / COORM / BatchManager_COORM.cxx
index 9e50e5be96a3d3d4cdb371a88786324034c2da05..7873bc98c6b966e6cc0d2e3a2978db70fcd3edcd 100644 (file)
@@ -224,18 +224,6 @@ namespace Batch
     return remoteFileName;
        }
 
-       const string BatchManager_COORM::convertSecTo_H_M_S(const long seconds)
-       {
-               int h(seconds / 3600);
-               int m((seconds % 3600) / 60);
-               int s((seconds % 3600) % 60);
-
-               stringstream ss;
-               ss << h << ":" << m << ":" << s;
-               
-               return ss.str();
-       }
-
        void BatchManager_COORM::exportInputFiles(const Job & job)
        {
                BatchManager::exportInputFiles(job);