Name: Anonymous 2008-09-14 6:07
System.out.println("before thread");
Socket socket = serverSock.accept();
LoginScript l = new LoginScript(socket);
l.start();
System.out.println("after thread");
why does my program wait for the thread to finish running before it continues? THIS IS BULLSHIT
Socket socket = serverSock.accept();
LoginScript l = new LoginScript(socket);
l.start();
System.out.println("after thread");
why does my program wait for the thread to finish running before it continues? THIS IS BULLSHIT