-
Notifications
You must be signed in to change notification settings - Fork 736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JDK24 remove System.getSecurityManager part 3 #21039
Conversation
...rc/java.management/share/classes/com/ibm/java/lang/management/internal/MemoryMXBeanImpl.java
Show resolved
Hide resolved
jcl/src/openj9.sharedclasses/share/classes/com/ibm/oti/shared/SharedAbstractHelper.java
Outdated
Show resolved
Hide resolved
3129c8b
to
7704946
Compare
jcl/src/openj9.sharedclasses/share/classes/com/ibm/oti/shared/SharedAbstractHelper.java
Outdated
Show resolved
Hide resolved
jcl/src/openj9.sharedclasses/share/classes/com/ibm/oti/shared/SharedClassHelperFactoryImpl.java
Outdated
Show resolved
Hide resolved
23df3d3
to
8501b70
Compare
jcl/src/openj9.sharedclasses/share/classes/com/ibm/oti/shared/SharedClassUtilities.java
Show resolved
Hide resolved
@@ -223,8 +223,11 @@ public Integer run() { | |||
* @param filter the filter to use when finding and storing classes | |||
*/ | |||
@Override | |||
/*[IF JAVA_SPEC_VERSION < 24]*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import java.security.AccessController;
import java.security.PrivilegedAction;
L30-31 can be removed for JDK24+.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The AccessController.doPrivileged
use in this file is still there. I will remove this in a seperate pull request.
Signed-off-by: Theresa Mammarella <[email protected]>
8501b70
to
f5a3419
Compare
Jenkins test sanity plinux jdk21,jdk24 |
sanity.functional: https://hyc-runtimes-jenkins.swg-devops.com/view/OpenJ9%20-%20Personal/job/Pipeline-Build-Test-Personal/26075/
extended.functional: https://hyc-runtimes-jenkins.swg-devops.com/view/Test_grinder/job/Grinder/47119/
Related: #20563