Removed useless code.

This commit is contained in:
Roberto Raggi
2010-01-29 15:28:58 +01:00
parent a7550b22a5
commit 80b5a6b50a

View File

@@ -370,20 +370,6 @@ bool QmlJSIndenter::readLine()
yyLinizerState.line = trimmedCodeLine(yyLinizerState.line);
/*
Remove preprocessor directives.
*/
k = 0;
while (k < yyLinizerState.line.length()) {
const QChar ch = yyLinizerState.line.at(k);
if (ch == QLatin1Char('#')) {
yyLinizerState.line.clear();
} else if (!ch.isSpace()) {
break;
}
k++;
}
/*
Remove trailing spaces.
*/
@@ -1044,11 +1030,6 @@ int QmlJSIndenter::indentForBottomLine(QTextBlock begin, QTextBlock end, QChar t
} else {
indent = indentOfLine(bottomLine);
}
} else if (okay(typedIn, QLatin1Char('#')) && firstCh == QLatin1Char('#')) {
/*
Preprocessor directives go flush left.
*/
indent = 0;
} else {
if (isUnfinishedLine()) {
indent = indentForContinuationLine();