NOISSUE remove some dead code from version related classes

This commit is contained in:
Petr Mrázek
2017-03-26 20:50:31 +02:00
parent 3aa28bd64a
commit 6f2a87167a
4 changed files with 0 additions and 24 deletions

View File

@ -15,14 +15,6 @@ enum ProblemSeverity
PROBLEM_ERROR
};
/// where is a version from?
enum class VersionSource
{
Builtin, //!< version loaded from the internal resources.
Local, //!< version loaded from a file in the cache.
Remote, //!< incomplete version on a remote server.
};
class PatchProblem
{
public:
@ -70,8 +62,6 @@ public:
virtual QString getFilename() = 0;
virtual VersionSource getVersionSource() = 0;
virtual std::shared_ptr<class VersionFile> getVersionFile() = 0;
virtual const QList<PatchProblem>& getProblems()