Skip to content

Commit

Permalink
Ensure visibility of the busy flag
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Pinčuk <alexander.v.pinchuk@gmail.com>
  • Loading branch information
avpinchuk committed May 10, 2023
1 parent a4419a4 commit 036b8d9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -58,7 +58,7 @@ public class ResourceHandle implements com.sun.appserv.connectors.internal.api.R
private int shareCount; // sharing within a component (XA only)
private boolean supportsXAResource;

private AtomicBoolean busy = new AtomicBoolean(false);
private final AtomicBoolean busy = new AtomicBoolean(false);

private Subject subject;

Expand Down

0 comments on commit 036b8d9

Please sign in to comment.