mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-15 14:13:56 +01:00
Opps! Wrong class.
By: Lymia <lymiahugs@gmail.com>
This commit is contained in:
parent
9013f59815
commit
51005cf1be
2 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ public interface PluginManager {
|
||||||
* @param loader Class name of the PluginLoader to register
|
* @param loader Class name of the PluginLoader to register
|
||||||
* @throws IllegalArgumentException Thrown when the given Class is not a valid PluginLoader
|
* @throws IllegalArgumentException Thrown when the given Class is not a valid PluginLoader
|
||||||
*/
|
*/
|
||||||
public void RegisterInterface(Class<? extends ClassLoader> loader) throws IllegalArgumentException;
|
public void RegisterInterface(Class<? extends PluginLoader> loader) throws IllegalArgumentException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the given plugin is loaded and returns it when applicable
|
* Checks if the given plugin is loaded and returns it when applicable
|
||||||
|
|
|
@ -39,11 +39,11 @@ public final class SimplePluginManager implements PluginManager {
|
||||||
* @param loader Class name of the PluginLoader to register
|
* @param loader Class name of the PluginLoader to register
|
||||||
* @throws IllegalArgumentException Thrown when the given Class is not a valid PluginLoader
|
* @throws IllegalArgumentException Thrown when the given Class is not a valid PluginLoader
|
||||||
*/
|
*/
|
||||||
public void RegisterInterface(Class<? extends ClassLoader> loader) throws IllegalArgumentException {
|
public void RegisterInterface(Class<? extends PluginLoader> loader) throws IllegalArgumentException {
|
||||||
PluginLoader instance;
|
PluginLoader instance;
|
||||||
|
|
||||||
if (PluginLoader.class.isAssignableFrom(loader)) {
|
if (PluginLoader.class.isAssignableFrom(loader)) {
|
||||||
Constructor<? extends ClassLoader> constructor;
|
Constructor<? extends PluginLoader> constructor;
|
||||||
try {
|
try {
|
||||||
constructor = loader.getConstructor(Server.class);
|
constructor = loader.getConstructor(Server.class);
|
||||||
instance = (PluginLoader) constructor.newInstance(server);
|
instance = (PluginLoader) constructor.newInstance(server);
|
||||||
|
|
Loading…
Reference in a new issue