I notice that a move() method was added, but the methods cancel and sendToDLQ seem to be
doing the same thing. Shouldn't they call move?
Also
Please avoid
| if (blah)
| {
| ...
| } else
| {
| ...
| }
|
Instead use:
| if (blah)
| {
| ...
| }
| else
| {
| ...
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4169724#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...