From: incastrix Date: Sun, 5 Oct 2008 00:38:23 +0000 (+0000) Subject: Change member visibility to private. X-Git-Url: http://git.phpeclipse.com?hp=06687ffb26b5be585ee8fa783e4ba3a68f475d5e Change member visibility to private. --- diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/xdebug/XDebugConnection.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/xdebug/XDebugConnection.java index 96ae5c9..19e6a2f 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/xdebug/XDebugConnection.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/xdebug/XDebugConnection.java @@ -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;