Skip to content

Commit 335f9de

Browse files
committed
removed more debug messages
1 parent 4cc33f2 commit 335f9de

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/checkstyle/Checker.hx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ class Checker {
132132
t = lexer.token(haxeparser.HaxeLexer.tok);
133133
}
134134
}
135-
catch (e:haxe.Exception) {
136-
trace(e.details());
135+
catch (e:Any) {
137136
ErrorUtils.handleException(e, file, "makeTokens");
138137
}
139138
}
@@ -161,8 +160,7 @@ class Checker {
161160
try {
162161
return parser.parse();
163162
}
164-
catch (e:haxe.Exception) {
165-
trace(e.details());
163+
catch (e:Any) {
166164
if (!allowFailingAST) {
167165
ErrorUtils.handleException(e, file, "makeAST [" + defines.join(",") + "]");
168166
}

0 commit comments

Comments
 (0)