All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m33s
18 lines
397 B
Java
18 lines
397 B
Java
package cc.fascinated.common;
|
|
|
|
import cc.fascinated.exception.impl.BadRequestException;
|
|
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);
|
|
}
|
|
}
|