Skip to content

Commit 715d27d

Browse files
RappyTVjumpingpxl
andauthored
Avoid using System.out.println (#3)
* Avoid using System.out.print/err * Remove register protocol debug message entirely * remove #protocolService in Protocol --------- Co-authored-by: Nico Middendorf <[email protected]>
1 parent ed41931 commit 715d27d

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

api/src/main/java/net/labymod/serverapi/api/ProtocolRegistry.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ protected ProtocolRegistry() {
5757
public void registerProtocol(@NotNull Protocol protocol) {
5858
Objects.requireNonNull(protocol, "Protocol cannot be null");
5959
this.protocols.add(protocol);
60-
System.out.println("Registered protocol: " + protocol.identifier());
6160

6261
for (Consumer<Protocol> registerListener : this.registerListeners) {
6362
registerListener.accept(protocol);

0 commit comments

Comments
 (0)