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:
parent
3dd4c544e1
commit
c10f8e47d0
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ public class DsfMISourceLookupParticipant implements ISourceLookupParticipant {
|
||||||
|
|
||||||
public DsfMISourceLookupParticipant(DsfSession session) {
|
public DsfMISourceLookupParticipant(DsfSession session) {
|
||||||
fSessionId = session.getId();
|
fSessionId = session.getId();
|
||||||
fExecutor = DsfSession.getSession(fSessionId).getExecutor();
|
fExecutor = session.getExecutor();
|
||||||
fServicesTracker = new DsfServicesTracker(DsfDebugPlugin.getBundleContext(), fSessionId);
|
fServicesTracker = new DsfServicesTracker(DsfDebugPlugin.getBundleContext(), fSessionId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue