Skip to content
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

8344365: SecurityManager cleanups in java.sql and java.sql.rowset modules #22185

Closed
wants to merge 12 commits into from
3 changes: 1 addition & 2 deletions test/jdk/jdk/internal/reflect/CallerSensitive/CheckCSMs.java
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your mailing list message recommends removal of this test. This test covers more than ensuring that CSMs are final or static; it actually scans all platform classes to ensure CSMs are present wherever they are needed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I'll leave the test with the empty set as suggested by Roger.

Original file line number Diff line number Diff line change
@@ -76,8 +76,7 @@ public class CheckCSMs {

// These non-static non-final methods must not have @CallerSensitiveAdapter
// methods that takes an additional caller class parameter.
private static Set<String> UNSUPPORTED_VIRTUAL_METHODS =
Set.of("java/io/ObjectStreamField#getType (Ljava/lang/Class;)Ljava/lang/Class;");
private static Set<String> UNSUPPORTED_VIRTUAL_METHODS = Set.of();

public static void main(String[] args) throws Exception {
if (args.length > 0 && args[0].equals("--list")) {