X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.32.compatibility/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipant.java b/net.sourceforge.phpeclipse.32.compatibility/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipant.java deleted file mode 100644 index 59cdae3..0000000 --- a/net.sourceforge.phpeclipse.32.compatibility/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipant.java +++ /dev/null @@ -1,17 +0,0 @@ -package net.sourceforge.phpeclipse.xdebug.php.launching; - -import net.sourceforge.phpeclipse.xdebug.php.model.XDebugStackFrame; - -import org.eclipse.core.runtime.CoreException; -import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupParticipant; - -public class PHPSourceLookupParticipant extends AbstractSourceLookupParticipant { - - public String getSourceName(Object object) throws CoreException { - if (object instanceof XDebugStackFrame) { - return ((XDebugStackFrame) object).getSourceName(); - } - return null; - } - -}