Files
Backend/src/main/java/cc.fascinated/common/ServerUtils.java

18 lines
397 B
Java
Raw Normal View History

2024-04-10 09:19:02 +01:00
package cc.fascinated.common;
import cc.fascinated.exception.impl.BadRequestException;
2024-04-10 09:19:02 +01:00
import lombok.experimental.UtilityClass;
@UtilityClass
public class ServerUtils {
/**
* Gets the address of the server.
*
* @return the address of the server
*/
public static String getAddress(String ip, int port) {
return ip + (port == 25565 ? "" : ":" + port);
}
}