"timfox" wrote : One more:
|
| JournalTransaction numberOfElements - does the AtomicInteger ever get incremented?
|
private AtomicInteger getCounter(final JournalFile file)
| {
| AtomicInteger value = numberOfElements.get(file.getOrderingID());
|
| if (value == null)
| {
| value = new AtomicInteger();
| numberOfElements.put(file.getOrderingID(), value);
| }
|
| return value;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4167927#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...