зеркало из https://github.com/mozilla/rhino.git
Debugger: fix NPE in variables view when expanding "CallSite"
This commit is contained in:
Родитель
c8ef8538f1
Коммит
a016f86018
|
@ -2738,6 +2738,9 @@ class VariableModel implements TreeTableModel {
|
|||
result = debugger.objectToString(getValue(node));
|
||||
} catch (RuntimeException exc) {
|
||||
result = exc.getMessage();
|
||||
if (result == null) {
|
||||
result = exc.toString();
|
||||
}
|
||||
}
|
||||
StringBuilder buf = new StringBuilder();
|
||||
int len = result.length();
|
||||
|
|
Загрузка…
Ссылка в новой задаче