Merge xdebug from 1.3.x.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / core / AbstractDebugConnection.java
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 (file)
index e3efc17..0000000
+++ /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