FXMisc / Flowless

Efficient VirtualFlow for JavaFX
BSD 2-Clause "Simplified" License
185 stars 38 forks source link

VirtualFlow.java does not compile in OpenJDK 17 #114

Open buestad opened 1 year ago

buestad commented 1 year ago

I am running OpenJDK 17 and eclipse 2022-09 Line 171:
this.cellListManager = new CellListManager<>(this, items, cellFactory);

image

Jugen commented 1 year ago

Change it as follows and it should compile:

this.cellListManager = new CellListManager<T, C>(this, items, cellFactory);
buestad commented 1 year ago

This solves my issue! Thanks

Jugen commented 1 year ago

You're welcome. BTW there will hopefully be new release in say a week .....