Re: RFR: 8326618 : Replace usage of deprecated method getId() in Thread

2024-02-28 Thread Kevin Rushforth
On Tue, 27 Feb 2024 18:24:02 GMT, John Hendrikx wrote: > Looks okay. `threadId` was added in JDK 19, but since we're on 21 now that > should be fine. Exactly. And as I noted in the JBS issue, this fix must not be backported to earlier versions of JavaFX (it would fail to compile anyway, since

Re: RFR: 8326618 : Replace usage of deprecated method getId() in Thread

2024-02-28 Thread Kevin Rushforth
On Tue, 27 Feb 2024 17:58:13 GMT, Anirvan Sarkar wrote: > Replace Thread.currentThread().getId() with Thread.currentThread().threadId() Marked as reviewed by kcr (Lead). - PR Review: https://git.openjdk.org/jfx/pull/1383#pullrequestreview-1907489547

Re: RFR: 8326618 : Replace usage of deprecated method getId() in Thread

2024-02-27 Thread John Hendrikx
On Tue, 27 Feb 2024 17:58:13 GMT, Anirvan Sarkar wrote: > Replace Thread.currentThread().getId() with Thread.currentThread().threadId() Looks okay. `threadId` was added in JDK 19, but since we're on 21 now that should be fine. - Marked as reviewed by jhendrikx (Committer). PR

RFR: 8326618 : Replace usage of deprecated method getId() in Thread

2024-02-27 Thread Anirvan Sarkar
Replace Thread.currentThread().getId() with Thread.currentThread().threadId() - Commit messages: - Replace Thread.currentThread().getId() with Thread.currentThread().threadId() Changes: https://git.openjdk.org/jfx/pull/1383/files Webrev: