Bug 567356 - Build path contains duplicate entry

Change-Id: I81b8af0dda794b832864d2d34faf401b68129b9e
Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
diff --git a/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ClasspathComputer.java b/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ClasspathComputer.java
index 6d534fb..491f0a0 100644
--- a/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ClasspathComputer.java
+++ b/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/ClasspathComputer.java
@@ -98,8 +98,7 @@
 			for (IClasspathEntry entry : entries) {
 				if (entry.getEntryKind() == IClasspathEntry.CPE_SOURCE
 						|| entry.getEntryKind() == IClasspathEntry.CPE_PROJECT
-						|| entry.getEntryKind() == IClasspathEntry.CPE_LIBRARY
-						|| entry.getEntryKind() == IClasspathEntry.CPE_CONTAINER) {
+						|| entry.getEntryKind() == IClasspathEntry.CPE_LIBRARY) {
 					if (paths.add(entry.getPath())) {
 						result.add(updateTestAttribute(isTestPlugin, entry));
 					}