Re: RFR: 8256397: MultipleSelectionModel throws IndexOutOfBoundException [v5]

2022-11-23 Thread Florian Kirmaier
On Fri, 18 Nov 2022 03:19:03 GMT, Michael Strauß wrote: >> Florian Kirmaier has updated the pull request incrementally with one >> additional commit since the last revision: >> >> JDK_8256397 >> Fixed more issues with the multiple selection model change events, and >> verified them with

Re: RFR: 8256397: MultipleSelectionModel throws IndexOutOfBoundException [v5]

2022-11-18 Thread Andy Goryachev
On Thu, 14 Jul 2022 08:05:25 GMT, Florian Kirmaier wrote: >> Fixing IndexOutOfBoundsException in the MultipleSelectionModelBase and added >> a unit-test for it. >> ticket: https://bugs.openjdk.java.net/browse/JDK-8256397 >> run test: `./gradlew --continue -PFULL_TEST=true controls:test --tests

Re: RFR: 8256397: MultipleSelectionModel throws IndexOutOfBoundException [v5]

2022-11-17 Thread Michael Strauß
On Thu, 14 Jul 2022 08:05:25 GMT, Florian Kirmaier wrote: >> Fixing IndexOutOfBoundsException in the MultipleSelectionModelBase and added >> a unit-test for it. >> ticket: https://bugs.openjdk.java.net/browse/JDK-8256397 >> run test: `./gradlew --continue -PFULL_TEST=true controls:test --tests

Re: RFR: 8256397: MultipleSelectionModel throws IndexOutOfBoundException [v5]

2022-11-16 Thread Ajit Ghaisas
On Thu, 14 Jul 2022 08:05:25 GMT, Florian Kirmaier wrote: >> Fixing IndexOutOfBoundsException in the MultipleSelectionModelBase and added >> a unit-test for it. >> ticket: https://bugs.openjdk.java.net/browse/JDK-8256397 >> run test: `./gradlew --continue -PFULL_TEST=true controls:test --tests

Re: RFR: 8256397: MultipleSelectionModel throws IndexOutOfBoundException [v5]

2022-07-14 Thread Florian Kirmaier
> Fixing IndexOutOfBoundsException in the MultipleSelectionModelBase and added > a unit-test for it. > ticket: https://bugs.openjdk.java.net/browse/JDK-8256397 > run test: `./gradlew --continue -PFULL_TEST=true controls:test --tests > "*MultipleSelectionModelImplTest*"` Florian Kirmaier has