Changed version for client and server.

This commit is contained in:
Deathsbreed 2014-11-06 11:29:57 -06:00
parent bb94770127
commit 8c2c09a339
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import java.lang.*;
*
*/
public class Client implements Runnable {
private String version = "v1.0";
private String version = "v1.0.1";
private Socket socket = null;
private ClientThread cThread = null;
private DataOutputStream streamOut = null;

View File

@ -15,7 +15,7 @@ import java.util.*;
*
*/
public class Server implements Runnable {
private String version = "v1.0";
private String version = "v1.0.1";
private ArrayList<ServerThread> clients = new ArrayList<ServerThread>();
private ServerSocket sSocket = null;
private Thread thread = null;