changes from jsdt.core classpathcontainer
diff --git a/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/project/WebProjectClassPathContainerInitializer.java b/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/project/WebProjectClassPathContainerInitializer.java index d92bb16..191e205 100644 --- a/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/project/WebProjectClassPathContainerInitializer.java +++ b/bundles/org.eclipse.wst.jsdt.web.core/src/org/eclipse/wst/jsdt/web/core/internal/project/WebProjectClassPathContainerInitializer.java
@@ -8,12 +8,13 @@ import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.Path; +import org.eclipse.wst.jsdt.core.ClasspathContainerInitializer; import org.eclipse.wst.jsdt.core.IClasspathContainer; import org.eclipse.wst.jsdt.core.IJavaProject; -import org.eclipse.wst.jsdt.core.compiler.libraries.BasicBrowserLibraryClassPathContainerInitializer; import org.eclipse.wst.jsdt.core.compiler.libraries.LibraryLocation; import org.eclipse.wst.jsdt.core.compiler.libraries.SystemLibraryLocation; + import org.eclipse.wst.jsdt.web.core.internal.JsCorePlugin; import org.eclipse.wst.jsdt.web.core.internal.java.JsNameManglerUtil; @@ -21,7 +22,7 @@ * @author childsb * */ -public class WebProjectClassPathContainerInitializer extends BasicBrowserLibraryClassPathContainerInitializer { +public class WebProjectClassPathContainerInitializer extends ClasspathContainerInitializer { private static final String CONTAINER_DESCRIPTION = "Web Project support for JSDT"; public static final char[] LIB_NAME = {'b','r','o','w','s','e','r','W','i','n','d','o','w','.','j','s'};