And how does your commit look like?
1.)
| @Override
| public void cleanup()
| {
| try
| {
| super.cleanup();
| }
| finally
| {
| root.cleanup();
| }
| }
|
or 2.)
| @Override
| public void cleanup()
| {
| try
| {
| root.cleanup();
| }
| finally
| {
| super.cleanup();
| }
| }
|
I'm asking because first approach is error prone (from maintainability point of
view).
Seems we're starting to play catching game. I don't want to;)
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4202114#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...