hal/src/zutil/test/ServerFindServerTest.java

16 lines
269 B
Java
Raw Normal View History

2008-11-14 16:38:36 +00:00
package zutil.test;
import java.io.IOException;
2011-02-15 19:37:04 +00:00
import zutil.net.ServerFind;
2008-11-14 16:38:36 +00:00
public class ServerFindServerTest {
public static void main(String[] args){
try {
new ServerFind(2000);
} catch (IOException e) {
e.printStackTrace();
}
}
}