From d60d4da5a90c3e0aee7346af81654bf7bc22c0e1 Mon Sep 17 00:00:00 2001 From: Vitalii Parfonov Date: Tue, 19 Sep 2017 13:06:23 +0300 Subject: [PATCH] Workaround for fixing freeze browser for big project (#6341) Signed-off-by: Vitalii Parfonov --- .../org/eclipse/che/ide/ext/git/client/GitChangesHandler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitChangesHandler.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitChangesHandler.java index f04cb80e95..2771338301 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitChangesHandler.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitChangesHandler.java @@ -115,7 +115,8 @@ public class GitChangesHandler { } }); - appContext.getWorkspaceRoot().synchronize(); + //TODO: temporary comment this line because its freeze browser for big project details see in che#6208 + //appContext.getWorkspaceRoot().synchronize(); } public void apply(String endpointId, Status status) {