summaryrefslogtreecommitdiff
path: root/platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java')
-rw-r--r--platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java b/platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java
index 1fd6c340d073..32b03f3deb2b 100644
--- a/platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java
+++ b/platform/platform-impl/src/com/intellij/notification/EventLogToolWindowFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2012 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.
@@ -36,6 +36,7 @@ import com.intellij.ui.content.Content;
import com.intellij.ui.content.ContentFactory;
import com.intellij.ui.content.ContentManager;
import org.jetbrains.annotations.NonNls;
+import org.jetbrains.annotations.NotNull;
import javax.swing.event.AncestorEvent;
@@ -44,7 +45,7 @@ import javax.swing.event.AncestorEvent;
*/
public class EventLogToolWindowFactory implements ToolWindowFactory, DumbAware {
@Override
- public void createToolWindowContent(final Project project, ToolWindow toolWindow) {
+ public void createToolWindowContent(@NotNull final Project project, @NotNull ToolWindow toolWindow) {
EventLog.getProjectComponent(project).initDefaultContent();
}