* Called by the GlobalConfiguratorImpl when the request is finished so that the
* ThreadLocalResetter can ask the ThreadLocalManager to clean itself up
*/
void __removeThreadLocals()
{
ThreadLocalManager threadLocalManager = _threadLocalManager.get();
if (threadLocalManager != null)
{
// clean up all of the request-scoped ThreadLocals
threadLocalManager.removeThreadLocals();
}
}