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
fix: Change client selectAll update to use LinkedHashSet (CP: 25.1) (#9169) (#9175) (CP: 24.10) (#9177)
This PR cherry-picks changes from the original PR #9175 to branch 24.10.
---
> This PR cherry-picks changes from the original PR #9169 to branch
25.1.
>
> ---
>
> > Fixes#9170
Co-authored-by: Sascha Ißbrücker <sissbruecker@vaadin.com>
Co-authored-by: Tatu Lund <tatu@vaadin.com>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: vaadin-grid-flow-parent/vaadin-grid-flow/src/main/java/com/vaadin/flow/component/grid/AbstractGridMultiSelectionModel.java
Copy file name to clipboardExpand all lines: vaadin-grid-flow-parent/vaadin-grid-flow/src/test/java/com/vaadin/flow/component/grid/GridMultiSelectionModelTest.java
+23-4Lines changed: 23 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,6 @@
31
31
importjava.util.function.Function;
32
32
33
33
importorg.junit.Before;
34
-
importorg.junit.Ignore;
35
34
importorg.junit.Test;
36
35
importorg.mockito.Mockito;
37
36
@@ -310,9 +309,29 @@ public void deselectAll() {
310
309
}
311
310
312
311
@Test
313
-
@Ignore
314
-
// Ignored because selectAll is not implemented yet
0 commit comments