summaryrefslogtreecommitdiffstats
path: root/logic/minecraft/VersionBuilder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'logic/minecraft/VersionBuilder.cpp')
-rw-r--r--logic/minecraft/VersionBuilder.cpp83
1 files changed, 0 insertions, 83 deletions
diff --git a/logic/minecraft/VersionBuilder.cpp b/logic/minecraft/VersionBuilder.cpp
deleted file mode 100644
index 4d58b060..00000000
--- a/logic/minecraft/VersionBuilder.cpp
+++ /dev/null
@@ -1,83 +0,0 @@
-/* Copyright 2013-2015 MultiMC Contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <QList>
-#include <QJsonObject>
-#include <QJsonArray>
-#include <QJsonDocument>
-#include <QFile>
-#include <QFileInfo>
-#include <QMessageBox>
-#include <QObject>
-#include <QDir>
-#include <qresource.h>
-#include <modutils.h>
-#include <pathutils.h>
-
-#include "minecraft/VersionBuilder.h"
-#include "minecraft/MinecraftProfile.h"
-#include "minecraft/OneSixRule.h"
-#include "minecraft/ProfilePatch.h"
-#include "minecraft/VersionFile.h"
-#include "VersionBuildError.h"
-#include "MinecraftVersionList.h"
-#include "ProfileUtils.h"
-
-#include "minecraft/OneSixInstance.h"
-#include "MMCJson.h"
-
-#include <QDebug>
-
-VersionBuilder::VersionBuilder()
-{
-}
-
-void VersionBuilder::build(MinecraftProfile *version, OneSixInstance *instance)
-{
- VersionBuilder builder;
- builder.m_version = version;
- builder.m_instance = instance;
- builder.buildInternal();
-}
-
-void VersionBuilder::readJsonAndApplyToVersion(MinecraftProfile *version, const QJsonObject &obj)
-{
- VersionBuilder builder;
- builder.m_version = version;
- builder.m_instance = 0;
- builder.readJsonAndApply(obj);
-}
-
-void VersionBuilder::readJsonAndApply(const QJsonObject &obj)
-{
- m_version->clear();
-
- auto file = VersionFile::fromJson(QJsonDocument(obj), QString(), false);
-
- file->applyTo(m_version);
- m_version->appendPatch(file);
-}
-
-
-void VersionBuilder::readInstancePatches()
-{
-
-}
-
-void VersionBuilder::buildInternal()
-{
-
-}
-