Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use CopyOnWriteArrayList in LayoutNotifier #561

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion org.eclipse.draw2d/src/org/eclipse/draw2d/Figure.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import java.util.Iterator;
import java.util.List;
import java.util.Objects;
import java.util.concurrent.CopyOnWriteArrayList;

import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTException;
Expand Down Expand Up @@ -2100,7 +2101,7 @@ public boolean prune(IFigure f) {
final class LayoutNotifier implements LayoutManager {

LayoutManager realLayout;
List<LayoutListener> listeners = new ArrayList<>(1);
List<LayoutListener> listeners = new CopyOnWriteArrayList<>();

LayoutNotifier(LayoutManager layout, LayoutListener listener) {
realLayout = layout;
Expand Down
Loading