8250580: Address reliance on default constructors in java.rmi

Reviewed-by: smarks
This commit is contained in:
Joe Darcy 2020-07-28 16:26:28 -07:00
parent 0b42b1cf15
commit 77a10a182f

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2000, 2006, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2000, 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
@ -61,6 +61,11 @@ import java.net.URL;
*/
public abstract class RMIClassLoaderSpi {
/**
* Constructor for subclasses to call.
*/
public RMIClassLoaderSpi() {}
/**
* Provides the implementation for
* {@link RMIClassLoader#loadClass(URL,String)},