You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
Currently, the required Java version for sfntly is not documented anywhere. By experimenting I found out that with the exception of the SafeVarargs annotation, sfntly currently targets Java 6.
Changing the minimally supported Java version to 7 would bring these benefits:
Less code to write for try-with-resources
Less code to write for generic types
Less code to write for implementing equals/hashCode
Changing the minimally supported Java version to 8 would bring these benefits:
Even less code to write for generic types
The required Java version should be documented somewhere.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, the required Java version for sfntly is not documented anywhere. By experimenting I found out that with the exception of the
SafeVarargs
annotation, sfntly currently targets Java 6.Changing the minimally supported Java version to 7 would bring these benefits:
try-with-resources
equals/hashCode
Changing the minimally supported Java version to 8 would bring these benefits:
The required Java version should be documented somewhere.
The text was updated successfully, but these errors were encountered: