Skip to content

Commit

Permalink
Improve error handling in compilesWithFix
Browse files Browse the repository at this point in the history
"Fixes" #849

RELNOTES: N/A

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=195434516
  • Loading branch information
cushon authored and ronshapiro committed May 9, 2018
1 parent dd095f8 commit d9d883c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOExcept
try {
newTask.analyze();
} catch (Throwable e) {
// ignored
return false; // ¯\_(ツ)_/¯
}
return countErrors(diagnosticListener) == 0;
}
Expand Down

0 comments on commit d9d883c

Please sign in to comment.