Path javadoc cleanjp
diff --git a/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Path.java b/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Path.java
index a43351f..6b5f799 100644
--- a/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Path.java
+++ b/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Path.java
@@ -24,7 +24,7 @@
  */

 public class Path implements IPath, Cloneable {

 	

-	/** The path string (never null). */

+	/** The path segments */

 	private String[] segments;

 

 	/** The device id string. May be null if there is no device. */

@@ -248,8 +248,9 @@
 	System.arraycopy(stack, 0, newSegments, 0, stackPointer);

 	this.segments = newSegments;

 }

-/*

- *

+/**

+ * Removes duplicate slashes from the given path, with the exception

+ * of leading double slash which represents a UNC path.

  */

 private String collapseSlashes(String path) {

 	int length = path.length();