Compare commits

..

No commits in common. "master" and "v1.0.2" have entirely different histories.

2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -9,6 +9,9 @@ import java.net.*;
* @license MIT * @license MIT
* @year 2014 * @year 2014
* *
* For details on the copyright, look at the COPYRIGHT file that came with
* this program.
*
*/ */
public class ClientThread extends Thread { public class ClientThread extends Thread {
private Socket socket = null; private Socket socket = null;