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

Update to Java 21 #27

Merged
merged 5 commits into from
Apr 15, 2024
Merged

Update to Java 21 #27

merged 5 commits into from
Apr 15, 2024

Commits on Apr 10, 2024

  1. fix usage of List.getLast in Xtend code for Java 21

    Java 21 adds List.getLast(), which throws an exception if the list is
    empty. Xtend also has an extension method getLast(), which returned
    null. Since the Java 21 method is declared directly in List, it has
    precedence over the extension method, which changes the behavior of
    existing Xtend code. This change fixes the problematic cases where
    getLast is called in Xtend code.
    mx990 committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    85b6b11 View commit details
    Browse the repository at this point in the history
  2. update to Java 21

    mx990 committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    e9857e4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    605870d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d2554a0 View commit details
    Browse the repository at this point in the history
  5. update Jenkins to Java 21

    mx990 committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    9f0db74 View commit details
    Browse the repository at this point in the history