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

VirtualFlow.java does not compile in OpenJDK 17 #114

Open
buestad opened this issue Nov 1, 2022 · 3 comments
Open

VirtualFlow.java does not compile in OpenJDK 17 #114

buestad opened this issue Nov 1, 2022 · 3 comments

Comments

@buestad
Copy link

buestad commented Nov 1, 2022

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

image

@Jugen
Copy link
Contributor

Jugen commented Nov 1, 2022

Change it as follows and it should compile:

this.cellListManager = new CellListManager<T, C>(this, items, cellFactory);

@buestad
Copy link
Author

buestad commented Nov 1, 2022

This solves my issue! Thanks

@Jugen
Copy link
Contributor

Jugen commented Nov 1, 2022

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants