summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Plugins/Python.cpp8
-rw-r--r--lib/Plugins/Python.h2
2 files changed, 1 insertions, 9 deletions
diff --git a/lib/Plugins/Python.cpp b/lib/Plugins/Python.cpp
index 047d1d1a..910bc947 100644
--- a/lib/Plugins/Python.cpp
+++ b/lib/Plugins/Python.cpp
@@ -82,14 +82,6 @@ string CAnalyzerPython::GetGlobalUUID(const char *pDebugDumpDir)
return GetLocalUUID(pDebugDumpDir);
}
-void CAnalyzerPython::CreateReport(const char *pDebugDumpDir, int force)
-{
- CDebugDump dd;
- dd.Open(pDebugDumpDir);
- dd.SaveText(FILENAME_RATING, "4");
- dd.Close();
-}
-
void CAnalyzerPython::Init()
{
}
diff --git a/lib/Plugins/Python.h b/lib/Plugins/Python.h
index 52655ec7..9f9395c5 100644
--- a/lib/Plugins/Python.h
+++ b/lib/Plugins/Python.h
@@ -28,7 +28,7 @@ class CAnalyzerPython : public CAnalyzer
public:
virtual std::string GetLocalUUID(const char *pDebugDumpDir);
virtual std::string GetGlobalUUID(const char *pDebugDumpDir);
- virtual void CreateReport(const char *pDebugDumpDir, int force);
+ virtual void CreateReport(const char *pDebugDumpDir, int force) {}
virtual void Init();
virtual void DeInit();
};