mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-25 12:05:14 +01:00
Use consistency for exception param names.
This commit is contained in:
parent
75998ae2c3
commit
44dacdceb1
@ -181,7 +181,7 @@ public class MultiverseCore extends JavaPlugin implements MVCore {
|
|||||||
private void loadAnchors() {
|
private void loadAnchors() {
|
||||||
Try.of(() -> anchorManagerProvider.get())
|
Try.of(() -> anchorManagerProvider.get())
|
||||||
.onSuccess(AnchorManager::loadAnchors)
|
.onSuccess(AnchorManager::loadAnchors)
|
||||||
.onFailure(throwable -> Logging.severe("Failed to load anchors", throwable));
|
.onFailure(e -> Logging.severe("Failed to load anchors", e));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -206,7 +206,7 @@ public class MultiverseCore extends JavaPlugin implements MVCore {
|
|||||||
serviceLocator.getAllServices(MultiverseCommand.class)
|
serviceLocator.getAllServices(MultiverseCommand.class)
|
||||||
.forEach(commandManager::registerCommand);
|
.forEach(commandManager::registerCommand);
|
||||||
})
|
})
|
||||||
.onFailure(throwable -> Logging.severe("Failed to register commands", throwable));
|
.onFailure(e -> Logging.severe("Failed to register commands", e));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -219,7 +219,7 @@ public class MultiverseCore extends JavaPlugin implements MVCore {
|
|||||||
commandManager.getLocales().addFileResClassLoader(this);
|
commandManager.getLocales().addFileResClassLoader(this);
|
||||||
commandManager.getLocales().addMessageBundles("multiverse-core");
|
commandManager.getLocales().addMessageBundles("multiverse-core");
|
||||||
})
|
})
|
||||||
.onFailure(throwable -> Logging.severe("Failed to register locales", throwable));
|
.onFailure(e -> Logging.severe("Failed to register locales", e));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -231,7 +231,7 @@ public class MultiverseCore extends JavaPlugin implements MVCore {
|
|||||||
serviceLocator.getAllServices(Destination.class)
|
serviceLocator.getAllServices(Destination.class)
|
||||||
.forEach(destinationsProvider::registerDestination);
|
.forEach(destinationsProvider::registerDestination);
|
||||||
})
|
})
|
||||||
.onFailure(throwable -> Logging.severe("Failed to register destinations", throwable));
|
.onFailure(e -> Logging.severe("Failed to register destinations", e));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user