mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8294241: Deprecate URL public constructors
Reviewed-by: joehw, prr, alanb, aefimov, michaelm
This commit is contained in:
parent
68209adfa7
commit
4338f527aa
82 changed files with 848 additions and 146 deletions
|
@ -239,7 +239,9 @@ public final class ParseUtil {
|
|||
if (!path.endsWith("/") && file.isDirectory()) {
|
||||
path = path + "/";
|
||||
}
|
||||
return new URL("file", "", path);
|
||||
@SuppressWarnings("deprecation")
|
||||
var result = new URL("file", "", path);
|
||||
return result;
|
||||
}
|
||||
|
||||
public static java.net.URI toURI(URL url) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue