Guard against possible NullPointerException if the Context has not been properly entered.

This commit is contained in:
norris%netscape.com 2000-02-28 18:40:34 +00:00
Родитель dfb69c7a8d
Коммит aea0fb6d79
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -60,7 +60,7 @@ public class OptIRFactory extends IRFactory {
(Node) statements,
nameHelper);
Context cx = Context.getCurrentContext();
if (cx.getDebugLevel() > 0)
if (cx != null && cx.getDebugLevel() > 0)
result.setRequiresActivation(true);
return result;
}

Просмотреть файл

@ -60,7 +60,7 @@ public class OptIRFactory extends IRFactory {
(Node) statements,
nameHelper);
Context cx = Context.getCurrentContext();
if (cx.getDebugLevel() > 0)
if (cx != null && cx.getDebugLevel() > 0)
result.setRequiresActivation(true);
return result;
}