Skip to content

Commit

Permalink
WBRI-339
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3422 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Aug 10, 2009
1 parent 9202436 commit 684cf7b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -32,7 +32,7 @@ public class JspInitialization
public void init(ServletContext context)
{
// JSP 2.1 specific check
if (JspFactory.getDefaultFactory().getJspApplicationContext(context) == null)
if (JspFactory.getDefaultFactory() == null || JspFactory.getDefaultFactory().getJspApplicationContext(context) == null)
{
return;
}
Expand Down

0 comments on commit 684cf7b

Please sign in to comment.