Skip to content

Commit

Permalink
fix: make the plugin work with 2023.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bjansen committed Jan 9, 2024
1 parent a67e6db commit 9899558
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
JDK_VERSION: 17
- IDEA_VERSION: IC-2023.1
JDK_VERSION: 17
- IDEA_VERSION: IC-2023.3.2
JDK_VERSION: 17
- IDEA_VERSION: IU-LATEST-EAP-SNAPSHOT
JDK_VERSION: 17

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import java.awt.*;
import java.awt.event.InputEvent;
import java.util.List;
import java.util.function.Supplier;

@SuppressWarnings("all")
public class MockToolWindow implements ToolWindow {
Expand Down Expand Up @@ -105,8 +106,16 @@ public void setTitle(@NlsContexts.TabTitle String title) {}
return null;
}

public @NotNull Supplier<@NlsContexts.TabTitle String> getStripeTitleProvider() {
return null;
}

public void setStripeTitle(@NlsContexts.TabTitle @NotNull String title) {}

public void setStripeTitleProvider(@NotNull Supplier<@NlsContexts.TabTitle @NotNull String> supplier) {

}

public boolean isAvailable() {
return false;
}
Expand Down

0 comments on commit 9899558

Please sign in to comment.