From 422f1550f3fa52cd43377a11ee6bbbfcee7aa4cc Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 28 Aug 2014 15:06:24 +0200 Subject: [PATCH] deprecate unused ChangeListManagerGate.moveChanges --- .../openapi/vcs/changes/ChangeListManagerGate.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/platform/vcs-api/src/com/intellij/openapi/vcs/changes/ChangeListManagerGate.java b/platform/vcs-api/src/com/intellij/openapi/vcs/changes/ChangeListManagerGate.java index 376188e477eb..d0c28f5583fc 100644 --- a/platform/vcs-api/src/com/intellij/openapi/vcs/changes/ChangeListManagerGate.java +++ b/platform/vcs-api/src/com/intellij/openapi/vcs/changes/ChangeListManagerGate.java @@ -15,7 +15,6 @@ */ package com.intellij.openapi.vcs.changes; -import com.intellij.openapi.vcs.FilePath; import com.intellij.openapi.vcs.FileStatus; import com.intellij.openapi.vfs.VirtualFile; import org.jetbrains.annotations.NotNull; @@ -39,8 +38,13 @@ public interface ChangeListManagerGate { void editComment(final String name, final String comment); void editName(final String oldName, final String newName); - // must be allowed only for perforce change synchronizer, not during normal update + + + /** + * @deprecated unused, to be removed in IDEA 15 + */ void moveChanges(final String toList, final Collection changes); + void setListsToDisappear(final Collection names); FileStatus getStatus(final VirtualFile file); FileStatus getStatus(final File file);