1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixed a potential NPE.

This commit is contained in:
Pawel Piech 2008-02-11 22:33:38 +00:00
parent 3dd4c544e1
commit c10f8e47d0

View file

@ -54,7 +54,7 @@ public class DsfMISourceLookupParticipant implements ISourceLookupParticipant {
public DsfMISourceLookupParticipant(DsfSession session) {
fSessionId = session.getId();
fExecutor = DsfSession.getSession(fSessionId).getExecutor();
fExecutor = session.getExecutor();
fServicesTracker = new DsfServicesTracker(DsfDebugPlugin.getBundleContext(), fSessionId);
}