Skip to content

Commit

Permalink
make the BlazeImportProjectAction dumb aware (#6985)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeFrosch authored Nov 12, 2024
1 parent bb2c011 commit d026c92
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.ui.Messages;
import java.io.IOException;
import org.jetbrains.annotations.NotNull;

class BlazeImportProjectAction extends AnAction {
class BlazeImportProjectAction extends AnAction implements DumbAware {
private static final Logger logger = Logger.getInstance(BlazeImportProjectAction.class);

@Override
Expand Down

0 comments on commit d026c92

Please sign in to comment.