Skip to content

Commit

Permalink
remove Serializable from Packet
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Sep 30, 2023
1 parent e1aaf2f commit 569584a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions API/src/main/java/ninja/egg82/messenger/packets/Packet.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
import io.netty.buffer.ByteBuf;
import org.jetbrains.annotations.NotNull;

import java.io.Serializable;
import java.util.UUID;

public interface Packet extends Serializable {
public interface Packet {
void read(@NotNull ByteBuf buffer);

void write(@NotNull ByteBuf buffer);
Expand Down

0 comments on commit 569584a

Please sign in to comment.