| 88 | } |
| 89 | |
| 90 | void updateFileHandler::readRemoteFromData(QByteArray &arr) |
| 91 | { |
| 92 | const QString reply = QString(arr); |
| 93 | const QStringList lines = reply.split("\n"); |
| 94 | for (auto line : lines) |
| 95 | this->parseOneLine(line); |
| 96 | } |
| 97 | |
| 98 | void updateFileHandler::parseOneLine(QString &line, bool checkExistence) |
| 99 | { |
no test coverage detected