X-Git-Url: http://secure.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java
index 9008abf..e908153 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java
@@ -4,35 +4,35 @@ import org.eclipse.core.resources.IProject;
 import org.eclipse.core.runtime.IPath;
 
 public class LoadPathEntry {
-	public static final String TYPE_PROJECT = "project";
-	
-	protected IProject project;
-	protected String type;
-
-	public LoadPathEntry(IProject aProjectEntry) {
-		project = aProjectEntry;
-		type = TYPE_PROJECT;
-	}
-
-	public IPath getPath() {
-		return project.getFullPath();
-	}
-	
-	public IProject getProject() {
-		return project;
-	}
-	
-	public String getType() {
-		return type;
-	}
-	
-	public String toXML() {
-		StringBuffer buffer = new StringBuffer();
-		
-		buffer.append("<pathentry type=\"");
-		buffer.append(type + "\" ");
-		buffer.append("path=\"" + getPath() + "\"/>");
-		
-		return buffer.toString();
-	}
+  public static final String TYPE_PROJECT = "project";
+
+  protected IProject project;
+  protected String type;
+
+  public LoadPathEntry(IProject aProjectEntry) {
+    project = aProjectEntry;
+    type = TYPE_PROJECT;
+  }
+
+  public IPath getPath() {
+    return project.getFullPath();
+  }
+
+  public IProject getProject() {
+    return project;
+  }
+
+  public String getType() {
+    return type;
+  }
+
+  public String toXML() {
+    StringBuffer buffer = new StringBuffer();
+
+    buffer.append("<pathentry type=\"");
+    buffer.append(type + "\" ");
+    buffer.append("path=\"" + getPath() + "\"/>");
+
+    return buffer.toString();
+  }
 }