We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17e5be commit e536a0dCopy full SHA for e536a0d
src/main/java/org/spongepowered/api/event/EventManager.java
@@ -51,7 +51,11 @@ public interface EventManager {
51
* @param plugin The plugin container
52
* @param obj The object
53
* @return This manager, for fluency
54
+ * @deprecated In order to be compatible with the JPMS, it is highly
55
+ * recommended that plugins instead use the
56
+ * {@link #registerListeners(PluginContainer, Object, MethodHandles.Lookup)} overload.
57
*/
58
+ @Deprecated(since = "13")
59
EventManager registerListeners(PluginContainer plugin, Object obj);
60
61
/**
0 commit comments