Skip to content

Commit

Permalink
Make AsyncResponseCallback members volatile
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Dec 13, 2017
1 parent 442f211 commit dd1a42f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -4,8 +4,8 @@

public class AsyncResponseCallback implements CompletionCallback {

private static boolean called;
private static Throwable error;
private static volatile boolean called;
private static volatile Throwable error;

public AsyncResponseCallback()
{
Expand Down

0 comments on commit dd1a42f

Please sign in to comment.