Skip to content
Snippets Groups Projects
Commit bb25e7a8 authored by fpuetz's avatar fpuetz
Browse files

Fix for Bug 3007801: Failure to create Session View

parent 5bb221e3
No related branches found
No related tags found
No related merge requests found
......@@ -39,13 +39,15 @@ public class ConsistencyAction extends Action {
protected IsInconsistentObservable inconsistentObservable;
public ConsistencyAction(ConsistencyWatchdogClient watchdogClient,
SessionManager sessionManager) {
SessionManager sessionManager,
IsInconsistentObservable inconsistentObservable) {
setImageDescriptor(PlatformUI.getWorkbench().getSharedImages()
.getImageDescriptor(ISharedImages.IMG_OBJS_WARN_TSK));
setToolTipText("No inconsistencies");
this.watchdogClient = watchdogClient;
this.sessionManager = sessionManager;
this.inconsistentObservable = inconsistentObservable;
sessionManager.addSessionListener(new AbstractSessionListener() {
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment