8236062: Disable clhsdb initialization of SA javascript support since it will always fail, and will likely be removed soon

Reviewed-by: amenkov, ysuenaga
This commit is contained in:
Chris Plummer 2019-12-17 20:19:49 -08:00
parent 1253f7e8fa
commit b2c3323a7f

View File

@ -1731,6 +1731,8 @@ public class CommandProcessor {
// called after debuggee attach
private void postAttach() {
/*
* JavaScript engine no longer works. For now disable it. Eventually we will remove it.
// create JavaScript engine and start it
try {
jsengine = new JSJavaScriptEngine() {
@ -1774,6 +1776,7 @@ public class CommandProcessor {
ex.printStackTrace(out);
}
}
*/
}
public void registerCommand(String cmd, String usage, final String func) {