X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/AbstractDebugConnection.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/AbstractDebugConnection.java deleted file mode 100644 index e3efc17..0000000 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/core/AbstractDebugConnection.java +++ /dev/null @@ -1,27 +0,0 @@ -/** - * - */ -package net.sourceforge.phpeclipse.xdebug.core; - -/** - * @author Christian Perkonig - * - */ -public abstract class AbstractDebugConnection implements IDebugConnection { - protected boolean fInitialized = false; - protected boolean fIsClosed = true; - - protected String fSessionID = ""; - - public String getSessionID() { - return fSessionID; - } - - public boolean isInitialized() { - return fInitialized; - } - - public boolean isClosed() { - return fIsClosed; - } -} \ No newline at end of file