Skip to content

Commit

Permalink
Add missing doPriv around getting the handler service
Browse files Browse the repository at this point in the history
Pulls in Equinox fix eclipse-equinox/equinox#684
  • Loading branch information
tjwatson committed Oct 3, 2024
1 parent e9cfae0 commit a9c4406
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ synchronized void dispose() {
@Override
public synchronized URLStreamHandlerService get() {
if (service == null && !disposed) {
service = bundleContext.getService(reference);
service = URLStreamHandlerFactoryImpl.secureAction.getService(reference, bundleContext);
}
return service;
}
Expand Down

0 comments on commit a9c4406

Please sign in to comment.