From 3b711578d23b4bdba35eb00537585608e8b84f48 Mon Sep 17 00:00:00 2001 From: Constantine Plotnikov Date: Mon, 18 May 2009 15:18:09 +0400 Subject: [PATCH] git4idea: IDEADEV-35012: removed methods getIntegrateEnvironment() and getUpdateEnvironment() since they returned resutlt of getUpdateEnvironment() result and this was not what user were expecting. --- plugins/git4idea/src/git4idea/GitVcs.java | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/plugins/git4idea/src/git4idea/GitVcs.java b/plugins/git4idea/src/git4idea/GitVcs.java index 1942470475..55ada68541 100644 --- a/plugins/git4idea/src/git4idea/GitVcs.java +++ b/plugins/git4idea/src/git4idea/GitVcs.java @@ -257,15 +257,6 @@ public class GitVcs extends AbstractVcs { * {@inheritDoc} */ @Override - @Nullable - public UpdateEnvironment getStatusEnvironment() { - return getUpdateEnvironment(); - } - - /** - * {@inheritDoc} - */ - @Override @NotNull public GitAnnotationProvider getAnnotationProvider() { return myAnnotationProvider; @@ -292,14 +283,6 @@ public class GitVcs extends AbstractVcs { /** * {@inheritDoc} */ - @Override - public UpdateEnvironment getIntegrateEnvironment() { - return getUpdateEnvironment(); - } - - /** - * {@inheritDoc} - */ @SuppressWarnings({"deprecation"}) @Override @Nullable -- 2.11.4.GIT