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
409
409
exitCode = parserWrapperProcess .waitFor ();
410
410
}
411
411
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.
413
413
return new TypeScriptWrapperOOMError ("The TypeScript parser wrapper crashed, possibly from running out of memory." , e );
414
414
}
415
415
if (exitCode != null ) {
Original file line number Diff line number Diff line change 4
4
5
5
public class TypeScriptWrapperOOMError extends ResourceError {
6
6
public TypeScriptWrapperOOMError (String message , Throwable throwable ) {
7
- super (message ,throwable );
8
- }
7
+ super (message ,throwable );
8
+ }
9
9
}
You can’t perform that action at this time.
0 commit comments