Commit 067d42df authored by Dmitry Batkovich's avatar Dmitry Batkovich Committed by intellij-monorepo-bot
Browse files

specify inVersion attribute

GitOrigin-RevId: 9632fe14740a33b04434dadd35670857ed615e59
parent 57095582
Branches unavailable Tags unavailable
No related merge requests found
Showing with 5 additions and 2 deletions
+5 -2
...@@ -40,7 +40,7 @@ public interface FilePropertyPusher<T> { ...@@ -40,7 +40,7 @@ public interface FilePropertyPusher<T> {
* @deprecated * @deprecated
* use {@link FilePropertyPusher#initExtra(Project, MessageBus)} instead * use {@link FilePropertyPusher#initExtra(Project, MessageBus)} instead
*/ */
@ApiStatus.ScheduledForRemoval @ApiStatus.ScheduledForRemoval(inVersion = "2021.3")
@Deprecated @Deprecated
@SuppressWarnings("unused") @SuppressWarnings("unused")
default void initExtra(@NotNull Project project, @NotNull MessageBus bus, @NotNull Engine languageLevelUpdater) { default void initExtra(@NotNull Project project, @NotNull MessageBus bus, @NotNull Engine languageLevelUpdater) {
...@@ -69,8 +69,11 @@ public interface FilePropertyPusher<T> { ...@@ -69,8 +69,11 @@ public interface FilePropertyPusher<T> {
void persistAttribute(@NotNull Project project, @NotNull VirtualFile fileOrDir, @NotNull T value) throws IOException; void persistAttribute(@NotNull Project project, @NotNull VirtualFile fileOrDir, @NotNull T value) throws IOException;
/**
* @deprecated not used anymore
*/
@Deprecated @Deprecated
@ApiStatus.ScheduledForRemoval @ApiStatus.ScheduledForRemoval(inVersion = "2021.3")
interface Engine { interface Engine {
void pushAll(); void pushAll();
void pushRecursively(@NotNull VirtualFile vile, @NotNull Project project); void pushRecursively(@NotNull VirtualFile vile, @NotNull Project project);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment