Flowless
Flowless copied to clipboard
VirtualFlow.java does not compile in OpenJDK 17
I am running OpenJDK 17 and eclipse 2022-09
Line 171:
this.cellListManager = new CellListManager<>(this, items, cellFactory);

Change it as follows and it should compile:
this.cellListManager = new CellListManager<T, C>(this, items, cellFactory);
This solves my issue! Thanks
You're welcome. BTW there will hopefully be new release in say a week .....