A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.ui / src / net / sourceforge / phpdt / internal / debug / ui / launcher / LoadPathEntryLabelProvider.java
index 647329c..7831922 100644 (file)
@@ -3,13 +3,14 @@ package net.sourceforge.phpdt.internal.debug.ui.launcher;
 import net.sourceforge.phpdt.internal.debug.ui.PHPDebugUiPlugin;
 import net.sourceforge.phpeclipse.LoadPathEntry;
 
+import org.eclipse.jface.viewers.IBaseLabelProvider;
 import org.eclipse.jface.viewers.ILabelProvider;
 import org.eclipse.jface.viewers.ILabelProviderListener;
 import org.eclipse.swt.graphics.Image;
 
 /**
  * @author xp4
- *
+ * 
  * To change this generated comment edit the template variable "typecomment":
  * Window>Preferences>Java>Templates.
  */
@@ -27,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;
        }