Reformatted code using IntelliJ

This commit is contained in:
Finn
2025-09-29 18:46:31 +02:00
parent f9ec00add4
commit facac103e7
30 changed files with 298 additions and 153 deletions

View File

@@ -71,6 +71,7 @@ public enum ProtocolVersion implements Serializable {
/**
* Returns a string representation of the protocol version, including its version, type, side, supported protocols, and compatible versions.
*
* @return a string representation of the protocol version.
*/
@Override
@@ -89,6 +90,7 @@ public enum ProtocolVersion implements Serializable {
/**
* Builds a name for the protocol version combining its version and type.
*
* @return a string representing the name of the protocol version.
*/
public final String buildName() {
@@ -105,6 +107,7 @@ public enum ProtocolVersion implements Serializable {
/**
* Returns the name of the protocol in uppercase.
*
* @return the name of the protocol in uppercase.
*/
@Override
@@ -134,6 +137,7 @@ public enum ProtocolVersion implements Serializable {
/**
* Returns the name of the protocol in uppercase.
*
* @return the name of the protocol in uppercase.
*/
@Override
@@ -179,11 +183,11 @@ public enum ProtocolVersion implements Serializable {
/**
* All Sides
*/
ALL
;
ALL;
/**
* Returns the name of the protocol in uppercase.
*
* @return the name of the protocol in uppercase.
*/
@Override