Skip to content
Snippets Groups Projects
Commit 81c7f4f1 authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Removed qDebug.

parent b3aff6b9
No related branches found
No related tags found
No related merge requests found
......@@ -39,8 +39,6 @@
#include <QtCore/QDir>
#include <QtCore/QFileInfo>
#include <QDebug>
using namespace QmlJS::AST;
using namespace QmlJSEditor::Internal;
......@@ -121,7 +119,6 @@ int ComponentFromObjectDef::check()
QList<Node *> path = semanticInfo().astPath(pos);
for (int i = path.size() - 1; i >= 0; --i) {
Node *node = path.at(i);
qDebug() << "path component" << i << typeid(*node).name();
if (UiObjectDefinition *objDef = cast<UiObjectDefinition *>(node)) {
if (i > 0 && !cast<UiProgram*>(path.at(i - 1))) { // node is not the root node
if (!getId(objDef).isEmpty()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment