From 742e04f254c3cda0b454b65ee12edbb1e5fa46f8 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 27 Nov 2014 13:57:29 +0100 Subject: [PATCH] Cleanup (annotations) --- .../src/com/intellij/ide/actions/SaveAllAction.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/platform/platform-impl/src/com/intellij/ide/actions/SaveAllAction.java b/platform/platform-impl/src/com/intellij/ide/actions/SaveAllAction.java index 6937b66730ef..1425b458c288 100644 --- a/platform/platform-impl/src/com/intellij/ide/actions/SaveAllAction.java +++ b/platform/platform-impl/src/com/intellij/ide/actions/SaveAllAction.java @@ -1,6 +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. @@ -20,9 +19,11 @@ import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.project.DumbAware; +import org.jetbrains.annotations.NotNull; public class SaveAllAction extends AnAction implements DumbAware { - public void actionPerformed(AnActionEvent e) { + @Override + public void actionPerformed(@NotNull AnActionEvent e) { ApplicationManager.getApplication().saveAll(); } }