Skip to content

Commit

Permalink
Upgrading to javac from jdk-24b27
Browse files Browse the repository at this point in the history
  • Loading branch information
lahodaj committed Dec 9, 2024
1 parent 42a69d6 commit f4ad78c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jdk.git.url=https://github.com/openjdk/jdk
jdk.git.commit=jdk-23+35
jdk.git.commit=jdk-24+27
nb-javac-ver=${jdk.git.commit}

debug.modulepath=\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,3 +412,9 @@ $list.getLast() :: $list instanceof java.util.List
=>
$list.get($list.size() - 1)
;;

java.util.SequencedSet => java.util.LinkedHashSet;;
$mods$ $type<$T> fvs = $init$; :: inClass("com.sun.tools.javac.comp.CaptureScanner")
=>
$mods$ java.util.LinkedHashSet<$T> fvs = $init$;
;;

0 comments on commit f4ad78c

Please sign in to comment.