mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
[devkit] ShuffleNamesAction: DumbAware
GitOrigin-RevId: 2f748b4af825e8770fee3baabe35f4569b9bf407
This commit is contained in:
committed by
intellij-monorepo-bot
parent
5ad5475d1e
commit
797769f682
@@ -1,8 +1,7 @@
|
||||
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||
package org.jetbrains.idea.devkit.actions;
|
||||
|
||||
import com.intellij.openapi.actionSystem.ActionUpdateThread;
|
||||
import com.intellij.openapi.actionSystem.AnAction;
|
||||
import com.intellij.openapi.actionSystem.AnActionEvent;
|
||||
import com.intellij.openapi.actionSystem.CommonDataKeys;
|
||||
import com.intellij.openapi.application.WriteAction;
|
||||
@@ -10,6 +9,7 @@ import com.intellij.openapi.command.CommandProcessorEx;
|
||||
import com.intellij.openapi.command.CommandToken;
|
||||
import com.intellij.openapi.command.UndoConfirmationPolicy;
|
||||
import com.intellij.openapi.editor.Editor;
|
||||
import com.intellij.openapi.project.DumbAwareAction;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.openapi.util.text.StringUtil;
|
||||
import com.intellij.openapi.vfs.ReadonlyStatusHandler;
|
||||
@@ -24,7 +24,7 @@ import java.util.*;
|
||||
/**
|
||||
* @author gregsh
|
||||
*/
|
||||
public final class ShuffleNamesAction extends AnAction {
|
||||
public final class ShuffleNamesAction extends DumbAwareAction {
|
||||
|
||||
@Override
|
||||
public void update(@NotNull AnActionEvent e) {
|
||||
|
||||
Reference in New Issue
Block a user