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 38548 Details for
Bug 136733
resolver should account for order of required EE.
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]
patch
136733_org.eclipse.osgi.patch (text/plain), 1.32 KB, created by
Thomas Watson
on 2006-04-13 15:45:48 EDT
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Thomas Watson
Created:
2006-04-13 15:45:48 EDT
Size:
1.32 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.osgi >Index: resolver/src/org/eclipse/osgi/internal/module/ResolverImpl.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.osgi/resolver/src/org/eclipse/osgi/internal/module/ResolverImpl.java,v >retrieving revision 1.34 >diff -u -r1.34 ResolverImpl.java >--- resolver/src/org/eclipse/osgi/internal/module/ResolverImpl.java 4 Apr 2006 13:43:52 -0000 1.34 >+++ resolver/src/org/eclipse/osgi/internal/module/ResolverImpl.java 13 Apr 2006 19:35:44 -0000 >@@ -249,11 +249,11 @@ > String[] ees = bundle.getExecutionEnvironments(); > boolean matchedEE = ees.length == 0; > if (!matchedEE) >- for (int i = 0; i < CURRENT_EES.length && !matchedEE; i++) >- for (int j = 0; j < CURRENT_EES[i].length && !matchedEE; j++) >- for (int k = 0; k < ees.length && !matchedEE; k++) >- if (CURRENT_EES[i][j].equals(ees[k])) { >- ((BundleDescriptionImpl) bundle).setEquinoxEE(i); >+ for (int i = 0; i < ees.length && !matchedEE; i++) >+ for (int j = 0; j < CURRENT_EES.length && !matchedEE; j++) >+ for (int k = 0; k < CURRENT_EES[j].length && !matchedEE; k++) >+ if (CURRENT_EES[j][k].equals(ees[i])) { >+ ((BundleDescriptionImpl) bundle).setEquinoxEE(j); > matchedEE = true; > } > if (!matchedEE) {
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 136733
: 38548