8000 style: format code with Google Java Format by deepsource-autofix[bot] · Pull Request #2 · St-Mary/Coral · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

style: format code with Google Java Format #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,16 @@
@Setter
public class PacketGetPlayerInformations extends Packet {

/**
* Constructs a new {@code PacketGetPlayerInformations}.
*/
public PacketGetPlayerInformations() {

}
/** Constructs a new {@code PacketGetPlayerInformations}. */
public PacketGetPlayerInformations() {}

/**
* Encodes the packet data into the provided {@link PacketBuffer}.
*
* @param packet The {@link PacketBuffer} to which the packet data will be written.
*/
@Override
public void encode(PacketBuffer packet) throws Exception {
}
public void encode(PacketBuffer packet) throws Exception {}

/**
* Handles the packet using the specified {@link PacketHandler}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

import com.stmarygate.coral.network.packets.Packet;

public class PacketGetPlayerInformationsResult extends Packet {

}
public class PacketGetPlayerInformationsResult extends Packet {}
0