Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2077,7 +2077,7 @@ private int iterQueue(final String operationName,
try {
Transaction tx = new TransactionImpl(storageManager);

synchronized (this) {
synchronized (QueueImpl.this) {
// ensure all messages are moved from intermediateMessageReferences so that they can be seen by the iterator
doInternalPoll();

Expand Down Expand Up @@ -2223,7 +2223,7 @@ public void destroyPaging() throws Exception {
}

@Override
public synchronized boolean deleteReference(final long messageID) throws Exception {
public boolean deleteReference(final long messageID) throws Exception {
return iterQueue("deleteReference", DEFAULT_FLUSH_LIMIT, null, new QueueIterateAction(messageID) {
@Override
public boolean actMessage(Transaction tx, MessageReference ref) throws Exception {
Expand Down
Loading
Loading