Remove deubgger statement

This commit is contained in:
Yui T 2015-03-09 15:14:08 -07:00
parent 4c7891ce09
commit 725577e328

View file

@ -152,7 +152,6 @@ class CompilerBaselineRunner extends RunnerBase {
if (this.errors) {
Harness.Baseline.runBaseline('Correct errors for ' + fileName, justName.replace(/\.ts$/, '.errors.txt'), (): string => {
if (result.errors.length === 0) return null;
debugger;
return getErrorBaseline(toBeCompiled, otherFiles, result);
});
}