summaryrefslogtreecommitdiff
path: root/plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java')
-rw-r--r--plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java b/plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java
index 1449ed0d32f1..11c3e596bc4d 100644
--- a/plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java
+++ b/plugins/commander/src/com/intellij/ide/commander/CommanderToolWindowFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2009 JetBrains s.r.o.
+ * Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,12 +19,13 @@ import com.intellij.openapi.wm.ToolWindowFactory;
import com.intellij.openapi.wm.ToolWindow;
import com.intellij.openapi.project.Project;
import com.intellij.ui.content.ContentFactory;
+import org.jetbrains.annotations.NotNull;
/**
* @author yole
*/
public class CommanderToolWindowFactory implements ToolWindowFactory {
- public void createToolWindowContent(Project project, ToolWindow toolWindow) {
+ public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {
Commander commander = Commander.getInstance(project);
toolWindow.getContentManager().addContent(ContentFactory.SERVICE.getInstance().createContent(commander, "", false));
}