зеркало из https://github.com/mozilla/gecko-dev.git
Clear jiles warning:
VariableModel.java:220:30:220:40: Caution: This try block cannot throw a "checked exception" (JLS section 14.7) that can be caught here. You may have intended to catch a RuntimeException instead of an Exception.
This commit is contained in:
Родитель
ca9f68309b
Коммит
760e4b4196
|
@ -217,7 +217,7 @@ class VariableNode {
|
|||
} else {
|
||||
try {
|
||||
result = ScriptableObject.getProperty(scope, name);
|
||||
} catch (Exception e) {
|
||||
} catch (RuntimeException e) {
|
||||
result = e.getMessage();
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче