> This PR removes all doPrivileged calls from `com.sun.javafx.tk**` in the > `javafx.graphics` module. > > Here is a quick overview of what I did for this fix: > > 1. Changed all simple cases of `doPrivileged((PrivilegedAction<T>) () -> > LAMBDA)` to `LAMBDA`, removing the `@SuppressWarnings("removal")` if > possible. In case of an unused or unneeded local variable, I removed the > local variable. > 2. Remove unused `AccessControlContext` variables, meaning those whose only > use was to be passed into a doPrivileged call that is now gone. > 3. Removed all `@SuppressWarnings("removal")` annotations that were unneeded > after the removed doPrivileged calls. In some cases there are annotations on > a method or class. Those can only be removed if the doPrivileged calls were > the only use of deprecated SM API in that method or class. > 4. Remove unused imports. > > Finally, here are a few "best practices" that I tried to follow, and would > ask others to follow when doing their piece of this. The idea is to reduce > the cognitive load on the reviewers. It might take you a couple extra > minutes, but will save time during the review: > > * When removing the doPrivileged calls, please do the minimum amount of > reformatting necessary to properly indent the body of the doPrivileged after > it is removed. For example, don't wholesale reformat a method (or worse, an > entire class) just because a couple doPrivileged calls are removed. > * Please try to not reorder the import statements when removing unused > imports. > > #### Notes to reviewers > > As a helpful hint for reviewers, I recommend reviewing this using the "Hide > whitespace" option. > > An initial, limited review of this was done in my personal fork at > kevinrushforth/jfx#4 if other reviwers are interested.
Kevin Rushforth has updated the pull request incrementally with one additional commit since the last revision: Review comments ------------- Changes: - all: https://git.openjdk.org/jfx/pull/1608/files - new: https://git.openjdk.org/jfx/pull/1608/files/2b3c9745..1c643d5c Webrevs: - full: https://webrevs.openjdk.org/?repo=jfx&pr=1608&range=01 - incr: https://webrevs.openjdk.org/?repo=jfx&pr=1608&range=00-01 Stats: 15 lines in 1 file changed: 0 ins; 5 del; 10 mod Patch: https://git.openjdk.org/jfx/pull/1608.diff Fetch: git fetch https://git.openjdk.org/jfx.git pull/1608/head:pull/1608 PR: https://git.openjdk.org/jfx/pull/1608