All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tracee.PortUtil Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package io.tracee;

import java.util.Random;

public final class PortUtil {

	public static int randomTestPort() {
		int port;
		//noinspection StatementWithEmptyBody
		while ((port = new Random().nextInt(65536)) < 10000) {
		}
		return port;
	}

	private PortUtil() {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy