Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2020-01-11 14:40:42 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-01-11 14:40:42 +0300
commit4eadb321aa742abfc31686ea7bc577fb1c25d5dd (patch)
treeb16d4db3ea8b1a7a10f20104a456562b8da35859 /src/Storage/FileInfoParser.cpp
parent5ff678917d3eee259687d5ef235c107126330898 (diff)
Added Job members to object model
Also changed all calls to gmtime to use gmtime_r instead, for thread safety
Diffstat (limited to 'src/Storage/FileInfoParser.cpp')
-rw-r--r--src/Storage/FileInfoParser.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/Storage/FileInfoParser.cpp b/src/Storage/FileInfoParser.cpp
index d232f360..d6b8d933 100644
--- a/src/Storage/FileInfoParser.cpp
+++ b/src/Storage/FileInfoParser.cpp
@@ -12,22 +12,6 @@
#include "PrintMonitor.h"
#include "GCodes/GCodes.h"
-void GCodeFileInfo::Init()
-{
- isValid = false;
- incomplete = true;
- firstLayerHeight = 0.0;
- objectHeight = 0.0;
- layerHeight = 0.0;
- printTime = simulatedTime = 0;
- numFilaments = 0;
- generatedBy.Clear();
- for (size_t extr = 0; extr < MaxExtruders; extr++)
- {
- filamentNeeded[extr] = 0.0;
- }
-}
-
#if HAS_MASS_STORAGE
FileInfoParser::FileInfoParser() noexcept