From a0b47aee5ba8d96e5ceec12798be9f63a16dbcd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sat, 27 Feb 2016 22:02:56 +0100 Subject: NOISSUE move version file reading and writing to dedicated namespaces --- logic/minecraft/ProfileUtils.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'logic/minecraft/ProfileUtils.cpp') diff --git a/logic/minecraft/ProfileUtils.cpp b/logic/minecraft/ProfileUtils.cpp index 5816f207..995c2052 100644 --- a/logic/minecraft/ProfileUtils.cpp +++ b/logic/minecraft/ProfileUtils.cpp @@ -1,5 +1,6 @@ #include "ProfileUtils.h" #include "minecraft/VersionFilterData.h" +#include "minecraft/onesix/OneSixVersionFormat.h" #include "Json.h" #include @@ -128,7 +129,7 @@ VersionFilePtr parseJsonFile(const QFileInfo &fileInfo, const bool requireOrder) .arg(fileInfo.fileName(), error.errorString()) .arg(line).arg(column)); } - return VersionFile::fromJson(doc, file.fileName(), requireOrder); + return OneSixVersionFormat::fromJson(doc, file.fileName(), requireOrder); } VersionFilePtr parseBinaryJsonFile(const QFileInfo &fileInfo) @@ -147,7 +148,7 @@ VersionFilePtr parseBinaryJsonFile(const QFileInfo &fileInfo) throw JSONValidationError( QObject::tr("Unable to process the version file %1.").arg(fileInfo.fileName())); } - return VersionFile::fromJson(doc, file.fileName(), false); + return OneSixVersionFormat::fromJson(doc, file.fileName(), false); } void removeLwjglFromPatch(VersionFilePtr patch) -- cgit v1.2.3