diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-03-12 23:19:45 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-04-07 00:20:01 +0200 |
commit | 40cf38bc3225c614e7e81d074f890e6f9da0507b (patch) | |
tree | 96029b827616bf122c68c50e51c0af286da9aad1 /application/MultiMC.cpp | |
parent | f6eb8fa1e43a412edb49401107de30d497f0f593 (diff) | |
download | PrismLauncher-40cf38bc3225c614e7e81d074f890e6f9da0507b.tar.gz PrismLauncher-40cf38bc3225c614e7e81d074f890e6f9da0507b.tar.bz2 PrismLauncher-40cf38bc3225c614e7e81d074f890e6f9da0507b.zip |
NOISSUE remove liteloader and forge
Diffstat (limited to 'application/MultiMC.cpp')
-rw-r--r-- | application/MultiMC.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index 98b73a6e..942b1d93 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -42,8 +42,6 @@ #include "icons/IconList.h" //FIXME: get rid of this #include "minecraft/legacy/LwjglVersionList.h" -#include "minecraft/liteloader/LiteLoaderVersionList.h" -#include "minecraft/forge/ForgeVersionList.h" #include "net/HttpMetaCache.h" #include "net/URLConstants.h" @@ -868,26 +866,6 @@ std::shared_ptr<LWJGLVersionList> MultiMC::lwjgllist() return m_lwjgllist; } -std::shared_ptr<ForgeVersionList> MultiMC::forgelist() -{ - if (!m_forgelist) - { - m_forgelist.reset(new ForgeVersionList()); - ENV.registerVersionList("net.minecraftforge", m_forgelist); - } - return m_forgelist; -} - -std::shared_ptr<LiteLoaderVersionList> MultiMC::liteloaderlist() -{ - if (!m_liteloaderlist) - { - m_liteloaderlist.reset(new LiteLoaderVersionList()); - ENV.registerVersionList("com.mumfrey.liteloader", m_liteloaderlist); - } - return m_liteloaderlist; -} - std::shared_ptr<JavaInstallList> MultiMC::javalist() { if (!m_javalist) |