avoid null context issue.

This commit is contained in:
Heng Sin Low 2008-01-30 22:42:04 +00:00
parent 2789f5b42c
commit deaf41c152
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public final class WebContext extends Properties
private static InheritableThreadLocal context = new InheritableThreadLocal() {
protected WebContext initialValue()
{
return null;
return new WebContext();
}
};