zsmartsystems / com.zsmartsystems.zigbee

ZigBee Cluster Library Java framework supporting multiple dongles
Eclipse Public License 1.0
142 stars 88 forks source link

Use thread-safe list type for outstandingQueues #1291

Closed TomTravaglino closed 2 years ago

TomTravaglino commented 2 years ago

Resolves #1290

This PR fixes an issue where a ConcurrentModificationException rises when iterating over outstandingQueues. outstandingQueues is now an instance of CopyOnWriteArrayList instead of an ArrayList.

Signed-off-by: Tommaso Travaglino tommaso.travaglino@telekom.de