Skip to content

Commit

Permalink
Added types to AbstractEditPartViewer's Selection #155
Browse files Browse the repository at this point in the history
Addresses: #155
  • Loading branch information
azoitl authored and ptziegler committed Sep 30, 2024
1 parent bea75bc commit 89fae40
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ public abstract class AbstractEditPartViewer implements EditPartViewer {
/**
* The raw list of selected editparts.
*/
protected final List selection = new ArrayList();
protected final List<EditPart> selection = new ArrayList<>();

/**
* The unmodifiable list of selected editparts.
*/
protected final List constantSelection = Collections.unmodifiableList(selection);
protected final List<EditPart> constantSelection = Collections.unmodifiableList(selection);

/**
* The list of selection listeners.
Expand Down

0 comments on commit 89fae40

Please sign in to comment.