diff options
Diffstat (limited to 'api/logic/meta/Version.cpp')
-rw-r--r-- | api/logic/meta/Version.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/api/logic/meta/Version.cpp b/api/logic/meta/Version.cpp index 55b92966..c9056547 100644 --- a/api/logic/meta/Version.cpp +++ b/api/logic/meta/Version.cpp @@ -79,10 +79,6 @@ void Meta::Version::mergeFromList(const Meta::VersionPtr& other) { m_conflicts = other->m_conflicts; } - if (m_parentUid != other->m_parentUid) - { - setParentUid(other->m_parentUid); - } if(m_volatile != other->m_volatile) { setVolatile(other->m_volatile); @@ -103,12 +99,6 @@ QString Meta::Version::localFilename() const return m_uid + '/' + m_version + ".json"; } -void Meta::Version::setParentUid(const QString& parentUid) -{ - m_parentUid = parentUid; - emit requiresChanged(); -} - void Meta::Version::setType(const QString &type) { m_type = type; |