Skip to content

Commit

Permalink
prefer prior matches first
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 31, 2023
1 parent 6627b9c commit 218fbae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/lucee/runtime/osgi/OSGiUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ private static Bundle loadBundleByPackage(PackageQuery pq, Set<Bundle> loadedBun
if (startIfNecessary) _startIfNecessary(b, parents);
if ("javax.xml.bind.helpers".equals(pq.getName())) {
print.e(parents);
print.e("pppppp " + pq.getName() + " " + bf.getSymbolicName() + ":" + bf.getVersionAsString());
print.ds("pppppp " + pq.getName() + " " + bf.getSymbolicName() + ":" + bf.getVersionAsString());
}
return b;
}
Expand All @@ -494,7 +494,7 @@ private static Bundle loadBundleByPackage(PackageQuery pq, Set<Bundle> loadedBun
if (startIfNecessary) _startIfNecessary(b, parents);
if ("javax.xml.bind.helpers".equals(pq.getName())) {
print.e(parents);
print.e("qqqqqqq " + pq.getName() + " " + bf.getSymbolicName() + ":" + bf.getVersionAsString());
print.ds("qqqqqqq " + pq.getName() + " " + bf.getSymbolicName() + ":" + bf.getVersionAsString());
}
return b;
}
Expand Down

0 comments on commit 218fbae

Please sign in to comment.