-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further cleanup - Now complies with code style rules.
- Loading branch information
thsassmann
committed
Mar 8, 2024
1 parent
b47f997
commit 90fb738
Showing
3 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
api/src/main/java/net/md_5/bungee/api/event/ProxyInitializeEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
package net.md_5.bungee.api.event; | ||
|
||
import java.util.Map; | ||
import net.md_5.bungee.api.config.ListenerInfo; | ||
import net.md_5.bungee.api.plugin.Event; | ||
|
||
import java.util.Map; | ||
|
||
public class ProxyInitializeEvent extends Event | ||
{ | ||
|
||
private final Map<ListenerInfo, Boolean> listenerState; | ||
|
||
public ProxyInitializeEvent( Map<ListenerInfo, Boolean> listenerState ) { | ||
public ProxyInitializeEvent(Map<ListenerInfo, Boolean> listenerState) | ||
{ | ||
this.listenerState = listenerState; | ||
} | ||
|
||
public Map<ListenerInfo, Boolean> getListenerState() { | ||
public Map<ListenerInfo, Boolean> getListenerState() | ||
{ | ||
return listenerState; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters