File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ private RuntimeException getExceptionFromMalformedResponse(String response, Exce
409409 exitCode = parserWrapperProcess .waitFor ();
410410 }
411411 if (exitCode != null && (exitCode == NODEJS_EXIT_CODE_FATAL_ERROR || exitCode == NODEJS_EXIT_CODE_SIG_ABORT )) {
412- // this is caught in the auto-builder, and handled as an OOM. Check there is the message is changed.
412+ // this is caught in the auto-builder, and handled as an OOM. Check there if the message is changed.
413413 return new TypeScriptWrapperOOMError ("The TypeScript parser wrapper crashed, possibly from running out of memory." , e );
414414 }
415415 if (exitCode != null ) {
Original file line number Diff line number Diff line change 44
55public class TypeScriptWrapperOOMError extends ResourceError {
66 public TypeScriptWrapperOOMError (String message , Throwable throwable ) {
7- super (message ,throwable );
8- }
7+ super (message ,throwable );
8+ }
99}
You can’t perform that action at this time.
0 commit comments