Merge pull request #259 from BBasile/master

removed a probable debug message
This commit is contained in:
Brian Schott 2015-05-27 23:54:41 -07:00
commit a853c9d789
1 changed files with 0 additions and 5 deletions

View File

@ -20,9 +20,6 @@ class RedundantParenCheck : BaseAnalyzer
override void visit(const IfStatement statement)
{
import std.stdio : stderr;
stderr.writeln(__PRETTY_FUNCTION__);
UnaryExpression unary;
if (statement.expression is null || statement.expression.items.length != 1)
goto end;
@ -41,8 +38,6 @@ class RedundantParenCheck : BaseAnalyzer
override void visit(const PrimaryExpression primaryExpression)
{
import std.stdio : stderr;
UnaryExpression unary;
if (primaryExpression.expression is null)
goto end;