X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java b/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java index 6784d49..7831922 100644 --- a/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java +++ b/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java @@ -10,7 +10,7 @@ import org.eclipse.swt.graphics.Image; /** * @author xp4 - * + * * To change this generated comment edit the template variable "typecomment": * Window>Preferences>Java>Templates. */ @@ -28,9 +28,11 @@ public class LoadPathEntryLabelProvider implements ILabelProvider { */ public String getText(Object element) { if (element != null && element.getClass() == LoadPathEntry.class) - return ((LoadPathEntry) element).getProject().getLocation().toOSString(); - - PHPDebugUiPlugin.log(new RuntimeException("Unable to render load path.")); + return ((LoadPathEntry) element).getProject().getLocation() + .toOSString(); + + PHPDebugUiPlugin + .log(new RuntimeException("Unable to render load path.")); return null; }