flexo: Use interface instead of type

This commit is contained in:
sdburns1998
2019-07-07 04:08:18 +02:00
parent 2c792ed307
commit b6fa83fcf9

View File

@@ -134,9 +134,9 @@ public class FlexoPlugin extends Plugin
private int scalingFactor;
@Getter(AccessLevel.PACKAGE)
private ArrayList<Rectangle> clickAreas = new ArrayList<>();
private List<Rectangle> clickAreas = new ArrayList<>();
@Getter(AccessLevel.PACKAGE)
private ArrayList<Point> clickPoints = new ArrayList<>();
private List<Point> clickPoints = new ArrayList<>();
@Subscribe
private void onConfigChanged(ConfigChanged event)