mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-156735 Bookmarks causing typing slowness (data key should be private and final)
This commit is contained in:
@@ -60,7 +60,7 @@ import java.util.List;
|
||||
)
|
||||
public class BookmarkManager extends AbstractProjectComponent implements PersistentStateComponent<Element> {
|
||||
private static final int MAX_AUTO_DESCRIPTION_SIZE = 50;
|
||||
public static Key<List<Bookmark>> BOOKMARKS_KEY = Key.create("bookmarks");
|
||||
private static final Key<List<Bookmark>> BOOKMARKS_KEY = Key.create("bookmarks");
|
||||
|
||||
private final List<Bookmark> myBookmarks = new ArrayList<Bookmark>();
|
||||
private final Map<Trinity<VirtualFile, Integer, String>, Bookmark> myDeletedDocumentBookmarks =
|
||||
|
||||
Reference in New Issue
Block a user