From 86af16725d62719168ede5ef79aa964c107d6539 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 27 Dec 2016 10:54:15 +0200 Subject: [PATCH] Revert "SDKtool: Warn if file is not found" It is not an error. SDKTool can be used to create new files. This reverts commit 274d3a8c79f369af201e475fdaa4bb157c04c512. Change-Id: I4af46b4deb5fe356a9c1050cc9557d43f3a91a6e Reviewed-by: Tobias Hunger --- src/tools/sdktool/operation.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tools/sdktool/operation.cpp b/src/tools/sdktool/operation.cpp index 9a62a5945ce..8a21983db02 100644 --- a/src/tools/sdktool/operation.cpp +++ b/src/tools/sdktool/operation.cpp @@ -102,8 +102,6 @@ QVariantMap Operation::load(const QString &file) if (!reader.load(path)) return QVariantMap(); map = reader.restoreValues(); - } else { - std::cerr << "File " << qPrintable(path.toUserOutput()) << " not found." << std::endl; } return map;