From c8687a8d05cc62c062ac18f8a583ceee9ba6d7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Wed, 11 Feb 2015 00:40:58 +0100 Subject: NOISSUE get rid of the obsolete version builder --- logic/minecraft/VersionBuilder.cpp | 83 -------------------------------------- 1 file changed, 83 deletions(-) delete mode 100644 logic/minecraft/VersionBuilder.cpp (limited to 'logic/minecraft/VersionBuilder.cpp') 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 -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#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 - -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() -{ - -} - -- cgit v1.2.3