mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Make StanzaCollector's cancelled field volatile
This commit is contained in:
parent
c792be9267
commit
77707737df
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Copyright 2003-2007 Jive Software, 2016-2017 Florian Schmaus.
|
* Copyright 2003-2007 Jive Software, 2016-2018 Florian Schmaus.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -55,7 +55,7 @@ public class StanzaCollector {
|
||||||
|
|
||||||
private final Stanza request;
|
private final Stanza request;
|
||||||
|
|
||||||
private boolean cancelled = false;
|
private volatile boolean cancelled = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new stanza collector. If the stanza filter is <tt>null</tt>, then
|
* Creates a new stanza collector. If the stanza filter is <tt>null</tt>, then
|
||||||
|
|
Loading…
Reference in a new issue