Skip to content

Commit

Permalink
fix cleanup order
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3758 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Sep 23, 2009
1 parent 9e87f58 commit c41dccc
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -116,11 +116,11 @@ public void endApplication()

public void cleanup()
{
applicationContext.cleanup();
sessionContext.cleanup();
conversationContext.cleanup();
requestContext.cleanup();
dependentContext.cleanup();
requestContext.cleanup();
conversationContext.cleanup();
sessionContext.cleanup();
applicationContext.cleanup();
}

public ApplicationContext getApplicationContext()
Expand Down

0 comments on commit c41dccc

Please sign in to comment.