From 070758ef97f4780bb228fa4e94d7584cda7c09a8 Mon Sep 17 00:00:00 2001 From: Kirill Likhodedov Date: Tue, 25 May 2021 14:53:14 +0300 Subject: [PATCH] Remove unnecessary RequiresEdt: IDEA-267043 Follow-up: 2c240dba GitOrigin-RevId: 6eacb360b9d9afd7d231f61d59e1069f736c07cf --- .../src/com/intellij/openapi/vcs/update/UpdateEnvironment.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platform/vcs-api/src/com/intellij/openapi/vcs/update/UpdateEnvironment.java b/platform/vcs-api/src/com/intellij/openapi/vcs/update/UpdateEnvironment.java index 691ccd5e9b84..abfe37c965fb 100644 --- a/platform/vcs-api/src/com/intellij/openapi/vcs/update/UpdateEnvironment.java +++ b/platform/vcs-api/src/com/intellij/openapi/vcs/update/UpdateEnvironment.java @@ -1,4 +1,4 @@ -// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. +// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.openapi.vcs.update; import com.intellij.openapi.options.Configurable; @@ -62,7 +62,6 @@ public interface UpdateEnvironment { * Returns true if the {@link UpdateSession} created by this UpdateEnvironment will * {@link UpdateSession#showNotification() show a custom notification} instead of the standard one. */ - @RequiresEdt default boolean hasCustomNotification() { return false; }