You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by sp...@apache.org on 2006/09/11 21:58:24 UTC

svn commit: r442314 - /geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.core/src/org/apache/geronimo/st/core/operations/SharedLibEntryCreationOperation.java

Author: sppatel
Date: Mon Sep 11 12:58:23 2006
New Revision: 442314

URL: http://svn.apache.org/viewvc?view=rev&rev=442314
Log:
add trailing seperator to directory project location in manifest

Modified:
    geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.core/src/org/apache/geronimo/st/core/operations/SharedLibEntryCreationOperation.java

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.core/src/org/apache/geronimo/st/core/operations/SharedLibEntryCreationOperation.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.core/src/org/apache/geronimo/st/core/operations/SharedLibEntryCreationOperation.java?view=diff&rev=442314&r1=442313&r2=442314
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.core/src/org/apache/geronimo/st/core/operations/SharedLibEntryCreationOperation.java (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.core/src/org/apache/geronimo/st/core/operations/SharedLibEntryCreationOperation.java Mon Sep 11 12:58:23 2006
@@ -115,7 +115,7 @@
 					if(kind == IClasspathEntry.CPE_PROJECT) {
 						IProject p = ResourcesPlugin.getWorkspace().getRoot().getProject(entry.getPath().segment(0));
 						IJavaProject ref = JavaCore.create(p);
-						path = p.getLocation().removeLastSegments(1).append(ref.getOutputLocation());
+						path = p.getLocation().removeLastSegments(1).append(ref.getOutputLocation()).addTrailingSeparator();
 					} else {
 						IClasspathEntry resolved = JavaCore.getResolvedClasspathEntry(entry);
 						path = resolved.getPath().makeAbsolute();