Skip to content

Commit da40388

Browse files
committedNov 16, 2024
8344315: Clean up sun.net.www.protocol.jrt.JavaRuntimeURLConnection after JEP 486 integration
Reviewed-by: dfuchs, alanb
1 parent 2c509a1 commit da40388

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed
 

‎src/java.base/share/classes/sun/net/www/protocol/jrt/JavaRuntimeURLConnection.java

+3-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,15 +30,11 @@
3030
import java.io.InputStream;
3131
import java.net.MalformedURLException;
3232
import java.net.URL;
33-
import java.security.AccessController;
34-
import java.security.Permission;
35-
import java.security.PrivilegedAction;
3633

3734
import jdk.internal.jimage.ImageLocation;
3835
import jdk.internal.jimage.ImageReader;
3936
import jdk.internal.jimage.ImageReaderFactory;
4037

41-
import jdk.internal.loader.URLClassPath;
4238
import jdk.internal.loader.Resource;
4339
import sun.net.www.ParseUtil;
4440
import sun.net.www.URLConnection;
@@ -47,15 +43,10 @@
4743
* URLConnection implementation that can be used to connect to resources
4844
* contained in the runtime image.
4945
*/
50-
@SuppressWarnings("removal")
5146
public class JavaRuntimeURLConnection extends URLConnection {
5247

5348
// 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();
5950

6051
// the module and resource name in the URL
6152
private final String module;
@@ -92,7 +83,7 @@ private static Resource findResource(String module, String name) {
9283
if (reader != null) {
9384
URL url = toJrtURL(module, name);
9485
ImageLocation location = reader.findLocation(module, name);
95-
if (location != null && URLClassPath.checkURL(url) != null) {
86+
if (location != null) {
9687
return new Resource() {
9788
@Override
9889
public String getName() {
@@ -158,11 +149,6 @@ public int getContentLength() {
158149
return len > Integer.MAX_VALUE ? -1 : (int)len;
159150
}
160151

161-
@Override
162-
public Permission getPermission() {
163-
return new RuntimePermission("accessSystemModules");
164-
}
165-
166152
/**
167153
* Returns a jrt URL for the given module and resource name.
168154
*/

0 commit comments

Comments
 (0)
Please sign in to comment.