From 30e708f4b1fd66b6286a61081f2023d1d4326d2a Mon Sep 17 00:00:00 2001 From: incastrix Date: Sun, 5 Oct 2008 00:38:23 +0000 Subject: [PATCH] Change member visibility to private. --- .../xdebug/core/xdebug/XDebugConnection.java | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) 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; -- 1.7.1