| 19 | namespace Bits |
| 20 | { |
| 21 | static void readString(const QJsonObject &root, const QString &key, QString &variable) |
| 22 | { |
| 23 | if (root.contains(key)) |
| 24 | { |
| 25 | variable = requireString(root.value(key)); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | static void readDownloadInfo(MojangDownloadInfo::Ptr out, const QJsonObject &obj) |
| 30 | { |
no test coverage detected