mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8250244: Address reliance on default constructors in java.net
Reviewed-by: alanb, vtewari
This commit is contained in:
parent
ac4dc0470e
commit
0e54ce2a8e
12 changed files with 71 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1995, 2020, 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
|
||||
|
@ -51,6 +51,11 @@ import sun.net.www.ParseUtil;
|
|||
* @since 1.0
|
||||
*/
|
||||
public abstract class URLStreamHandler {
|
||||
/**
|
||||
* Constructor for subclasses to call.
|
||||
*/
|
||||
public URLStreamHandler() {}
|
||||
|
||||
/**
|
||||
* Opens a connection to the object referenced by the
|
||||
* {@code URL} argument.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue