|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
30 | 30 | import java.io.InputStream;
|
31 | 31 | import java.net.MalformedURLException;
|
32 | 32 | import java.net.URL;
|
33 |
| -import java.security.AccessController; |
34 |
| -import java.security.Permission; |
35 |
| -import java.security.PrivilegedAction; |
36 | 33 |
|
37 | 34 | import jdk.internal.jimage.ImageLocation;
|
38 | 35 | import jdk.internal.jimage.ImageReader;
|
39 | 36 | import jdk.internal.jimage.ImageReaderFactory;
|
40 | 37 |
|
41 |
| -import jdk.internal.loader.URLClassPath; |
42 | 38 | import jdk.internal.loader.Resource;
|
43 | 39 | import sun.net.www.ParseUtil;
|
44 | 40 | import sun.net.www.URLConnection;
|
|
47 | 43 | * URLConnection implementation that can be used to connect to resources
|
48 | 44 | * contained in the runtime image.
|
49 | 45 | */
|
50 |
| -@SuppressWarnings("removal") |
51 | 46 | public class JavaRuntimeURLConnection extends URLConnection {
|
52 | 47 |
|
53 | 48 | // ImageReader to access resources in jimage
|
54 |
| - private static final ImageReader reader; |
55 |
| - static { |
56 |
| - PrivilegedAction<ImageReader> pa = ImageReaderFactory::getImageReader; |
57 |
| - reader = AccessController.doPrivileged(pa); |
58 |
| - } |
| 49 | + private static final ImageReader reader = ImageReaderFactory.getImageReader(); |
59 | 50 |
|
60 | 51 | // the module and resource name in the URL
|
61 | 52 | private final String module;
|
@@ -92,7 +83,7 @@ private static Resource findResource(String module, String name) {
|
92 | 83 | if (reader != null) {
|
93 | 84 | URL url = toJrtURL(module, name);
|
94 | 85 | ImageLocation location = reader.findLocation(module, name);
|
95 |
| - if (location != null && URLClassPath.checkURL(url) != null) { |
| 86 | + if (location != null) { |
96 | 87 | return new Resource() {
|
97 | 88 | @Override
|
98 | 89 | public String getName() {
|
@@ -158,11 +149,6 @@ public int getContentLength() {
|
158 | 149 | return len > Integer.MAX_VALUE ? -1 : (int)len;
|
159 | 150 | }
|
160 | 151 |
|
161 |
| - @Override |
162 |
| - public Permission getPermission() { |
163 |
| - return new RuntimePermission("accessSystemModules"); |
164 |
| - } |
165 |
| - |
166 | 152 | /**
|
167 | 153 | * Returns a jrt URL for the given module and resource name.
|
168 | 154 | */
|
|
0 commit comments