Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 303195
Collapse All | Expand All

(-)j2eecreation/org/eclipse/jst/j2ee/project/EarUtilities.java (-1 / +2 lines)
Lines 383-389 Link Here
383
	public static String getEARLibDir(EARVirtualComponent earComponent) {
383
	public static String getEARLibDir(EARVirtualComponent earComponent) {
384
		// check if the EAR component's version is 5 or greater
384
		// check if the EAR component's version is 5 or greater
385
		IProject earProject = earComponent.getProject();
385
		IProject earProject = earComponent.getProject();
386
		if (!JavaEEProjectUtilities.isJEEComponent(earComponent, JavaEEProjectUtilities.DD_VERSION)) {
386
		if (!JavaEEProjectUtilities.isJEEComponent(earComponent, JavaEEProjectUtilities.DD_VERSION)
387
				|| !JavaEEProjectUtilities.isJEEComponent(earComponent, JavaEEProjectUtilities.FACET_VERSION)) {
387
			return null;
388
			return null;
388
		}
389
		}
389
		
390
		

Return to bug 303195