diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-03-06 00:39:25 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-04-07 00:19:51 +0200 |
commit | 8cbe13c6560c3abe8ef73b8a376bd84dea281cf4 (patch) | |
tree | 680417b3975d46d1f9d7efcaeb077dc240f380ed /api/logic/minecraft/MinecraftVersionList.cpp | |
parent | 160b5033a79e6b5ee9f3e2a001b96c677f41ddcb (diff) | |
download | MultiMC-8cbe13c6560c3abe8ef73b8a376bd84dea281cf4.tar MultiMC-8cbe13c6560c3abe8ef73b8a376bd84dea281cf4.tar.gz MultiMC-8cbe13c6560c3abe8ef73b8a376bd84dea281cf4.tar.lz MultiMC-8cbe13c6560c3abe8ef73b8a376bd84dea281cf4.tar.xz MultiMC-8cbe13c6560c3abe8ef73b8a376bd84dea281cf4.zip |
NOISSUE remove legacy version blacklist
Diffstat (limited to 'api/logic/minecraft/MinecraftVersionList.cpp')
-rw-r--r-- | api/logic/minecraft/MinecraftVersionList.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/api/logic/minecraft/MinecraftVersionList.cpp b/api/logic/minecraft/MinecraftVersionList.cpp index 2c9a8035..29fa840e 100644 --- a/api/logic/minecraft/MinecraftVersionList.cpp +++ b/api/logic/minecraft/MinecraftVersionList.cpp @@ -179,12 +179,6 @@ void MinecraftVersionList::loadBuiltinList() continue; } - if (g_VersionFilterData.legacyBlacklist.contains(versionID)) - { - qWarning() << "Blacklisted legacy version ignored: " << versionID; - continue; - } - // Now, we construct the version object and add it to the list. std::shared_ptr<MinecraftVersion> mcVersion(new MinecraftVersion()); mcVersion->m_name = mcVersion->m_descriptor = versionID; @@ -258,12 +252,6 @@ void MinecraftVersionList::loadMojangList(QJsonDocument jsonDoc, VersionSource s continue; } - if (g_VersionFilterData.legacyBlacklist.contains(versionID)) - { - qWarning() << "Blacklisted legacy version ignored: " << versionID; - continue; - } - // Now, we construct the version object and add it to the list. std::shared_ptr<MinecraftVersion> mcVersion(new MinecraftVersion()); mcVersion->m_name = mcVersion->m_descriptor = versionID; |