Author: max.andersen(a)jboss.com
Date: 2007-08-09 00:42:48 -0400 (Thu, 09 Aug 2007)
New Revision: 2995
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java
Log:
libraries were being completely ignored.
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java
===================================================================
---
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java 2007-08-09
03:29:32 UTC (rev 2994)
+++
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java 2007-08-09
04:42:48 UTC (rev 2995)
@@ -34,7 +34,7 @@
protected IClasspathEntry[] get32(IPath location, String config) {
ArrayList list = new ArrayList();
- IPath configPath = location.append("server").append("config");
+ IPath configPath = location.append("server").append(config);
addEntries(location.append("client"), list);
addEntries(location.append("lib"), list);
addEntries(configPath.append("lib"), list);
@@ -43,8 +43,8 @@
protected IClasspathEntry[] get40(IPath location, String config) {
ArrayList list = new ArrayList();
- IPath configPath = location.append("server").append("config");
- IPath deployPath = location.append("deploy");
+ IPath configPath = location.append("server").append(config);
+ IPath deployPath = configPath.append("deploy");
addEntries(location.append("client"), list);
addEntries(location.append("lib"), list);
addEntries(configPath.append("lib"), list);
@@ -56,8 +56,8 @@
protected IClasspathEntry[] get42(IPath location, String config) {
ArrayList list = new ArrayList();
- IPath configPath = location.append("server").append("config");
- IPath deployPath = location.append("deploy");
+ IPath configPath = location.append("server").append(config);
+ IPath deployPath = configPath.append("deploy");
addEntries(location.append("client"), list);
addEntries(location.append("lib"), list);
addEntries(configPath.append("lib"), list);
Show replies by date