392237 Converted ChatServlet to servlet 3.0

This commit is contained in:
Greg Wilkins 2012-10-21 16:26:17 +11:00
parent be3432ad55
commit a2bc79922e
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ public class ChatServlet extends HttpServlet
// wakeup member if polling
AsyncContext async=m._async.get();
if (m._async.compareAndSet(async,null))
if (async!=null & m._async.compareAndSet(async,null))
async.dispatch();
}
}