Change member visibility to private.
authorincastrix <incastrix>
Sun, 5 Oct 2008 00:38:23 +0000 (00:38 +0000)
committerincastrix <incastrix>
Sun, 5 Oct 2008 00:38:23 +0000 (00:38 +0000)
net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/xdebug/XDebugConnection.java

index 96ae5c9..19e6a2f 100644 (file)
@@ -18,15 +18,13 @@ import org.eclipse.core.runtime.IStatus;
  *
  */
 public class XDebugConnection {
-       private int fTransactionID = 0;
+       private int fTransactionID;
        private Socket fDebugSocket;
        private OutputStreamWriter fDebugWriter;
        private DataInputStream fDebugReader;
-
-       protected boolean fInitialized = false;
-       protected boolean fIsClosed = true;
-       
-       protected String fSessionID = "";
+       private boolean fInitialized;
+       private boolean fIsClosed;
+       private String fSessionID;
        
        public String getSessionID() {
                return fSessionID;