X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/JavaProjectElementInfo.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/JavaProjectElementInfo.java index 9d5ab81..53e57d0 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/JavaProjectElementInfo.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/JavaProjectElementInfo.java @@ -65,7 +65,7 @@ class JavaProjectElementInfo extends OpenableElementInfo { // determine if src == project and/or if bin == project IPath projectPath = project.getProject().getFullPath(); boolean srcIsProject = false; - boolean binIsProject = false; + //boolean binIsProject = false; char[][] exclusionPatterns = null; IClasspathEntry[] classpath = null; IPath projectOutput = null; @@ -82,7 +82,7 @@ class JavaProjectElementInfo extends OpenableElementInfo { } } projectOutput = project.getOutputLocation(); - binIsProject = projectPath.equals(projectOutput); + //binIsProject = projectPath.equals(projectOutput); } catch (JavaModelException e) { // ignore } @@ -97,7 +97,7 @@ class JavaProjectElementInfo extends OpenableElementInfo { switch (res.getType()) { case IResource.FILE: IPath resFullPath = res.getFullPath(); - String resName = res.getName(); + //String resName = res.getName(); // ignore a jar file on the classpath // if (ProjectPrefUtil.isArchiveFileName(resName) &&