Skip to content

Commit

Permalink
fix: enable preview to JDK
Browse files Browse the repository at this point in the history
  • Loading branch information
fdaugan committed Dec 15, 2024
1 parent c9c5a73 commit 82c4b96
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ void updateFirstName() {
}

private void update2(Consumer<UserOrgEditionVo> consumer) {
update2(consumer, _ -> {
update2(consumer, e -> {
// No change
});
}
Expand Down Expand Up @@ -807,7 +807,7 @@ void updateUserChangeDepartmentNotExists() {

@Test
void updateUserNoChange() {
update2(_ -> {
update2(e -> {
// No change
});
}
Expand Down

0 comments on commit 82c4b96

Please sign in to comment.