Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 99074 Details for
Bug 219335
[filters] replace implicit rule for empty classpath containers with filter
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
additional patch
219335b.patch (text/plain), 1.48 KB, created by
Martin Aeschlimann
on 2008-05-07 10:07:07 EDT
(
hide
)
Description:
additional patch
Filename:
MIME Type:
Creator:
Martin Aeschlimann
Created:
2008-05-07 10:07:07 EDT
Size:
1.48 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jdt.ui >Index: ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java,v >retrieving revision 1.78 >diff -u -r1.78 PackageExplorerContentProvider.java >--- ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java 7 May 2008 12:27:48 -0000 1.78 >+++ ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java 7 May 2008 14:04:34 -0000 >@@ -310,8 +310,6 @@ > return NO_CHILDREN; > > List result= new ArrayList(); >- >- boolean addJARContainer= false; > > IPackageFragmentRoot[] roots= project.getPackageFragmentRoots(); > for (int i= 0; i < roots.length; i++) { >@@ -321,7 +319,7 @@ > if (entryKind == IClasspathEntry.CPE_CONTAINER) { > // all ClassPathContainers are added later > } else if (fShowLibrariesNode && (entryKind == IClasspathEntry.CPE_LIBRARY || entryKind == IClasspathEntry.CPE_VARIABLE)) { >- addJARContainer= true; >+ // skip: will add the referenced library node later > } else { > if (isProjectPackageFragmentRoot(root)) { > // filter out package fragments that correspond to projects and >@@ -336,7 +334,7 @@ > } > } > >- if (addJARContainer) { >+ if (fShowLibrariesNode) { > result.add(new LibraryContainer(project)); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 219335
:
99062
| 99074