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

8344524: Remove SecurityManager related code from jdk.jlink module #22268

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/jdk.jlink/share/classes/jdk/tools/jlink/internal/Jlink.java
Original file line number Diff line number Diff line change
@@ -242,18 +242,6 @@ public String toString() {
}
}

/**
* Jlink instance constructor, if a security manager is set, the jlink
* permission is checked.
*/
@SuppressWarnings("removal")
public Jlink() {
if (System.getSecurityManager() != null) {
System.getSecurityManager().
checkPermission(new JlinkPermission("jlink"));
}
}

/**
* Build the image.
*

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -44,13 +44,7 @@ public static void main(String... args) throws Exception {
* @param args command line arguments
* @return an exit code. 0 means success, non-zero means an error occurred.
*/
@SuppressWarnings("removal")
public static int run(PrintWriter out, PrintWriter err, String... args) {
if (System.getSecurityManager() != null) {
System.getSecurityManager().
checkPermission(new JlinkPermission("jlink"));
}

JlinkTask t = new JlinkTask();
t.setLog(out, err);
return t.run(args);