Fixed: Concurrent access while debugging

This commit is contained in:
Jindra Petřík
2021-01-04 20:02:36 +01:00
parent 6637b11d67
commit a2eaa42ecb
2 changed files with 3 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file.
- Radial gradients focal point reading/writing
- Correct AS/P-code matching in editor for AS3 after using deobfuscation
- Correct line matching in debugger of AS3 after using deobfuscation
- Concurrent access while in debugger
## [11.3.0] - 2020-04-25
### Added

View File

@@ -59,6 +59,7 @@ import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeSet;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.logging.ConsoleHandler;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -330,7 +331,7 @@ public class DebuggerHandler implements DebugConnectionListener {
private InBreakReason breakReason;
private final List<BreakListener> breakListeners = new ArrayList<>();
private final List<BreakListener> breakListeners = new CopyOnWriteArrayList<>();
private final List<TraceListener> traceListeners = new ArrayList<>();