diff Core/JobsEngine/JobStatus.cpp @ 2647:73d7d95dd75e jobs

removal of internal job information
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 31 May 2018 17:45:09 +0200
parents 3372c5255333
children e1893d31652a
line wrap: on
line diff
--- a/Core/JobsEngine/JobStatus.cpp	Thu May 31 17:30:22 2018 +0200
+++ b/Core/JobsEngine/JobStatus.cpp	Thu May 31 17:45:09 2018 +0200
@@ -40,8 +40,7 @@
     errorCode_(ErrorCode_InternalError),
     progress_(0),
     jobType_("Invalid"),
-    publicContent_(Json::objectValue),
-    internalContent_(Json::objectValue)
+    publicContent_(Json::objectValue)
   {
   }
 
@@ -50,8 +49,7 @@
                        IJob& job) :
     errorCode_(code),
     progress_(job.GetProgress()),
-    publicContent_(Json::objectValue),
-    internalContent_(Json::objectValue)
+    publicContent_(Json::objectValue)
   {
     if (progress_ < 0)
     {
@@ -65,6 +63,5 @@
 
     job.GetJobType(jobType_);
     job.GetPublicContent(publicContent_);
-    job.GetInternalContent(internalContent_);
   }
 }