Skip to content

Commit

Permalink
eliminate orphaned references to ReviewPresenter and HistoryPresenter
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Nov 16, 2011
1 parent 82c57af commit 59433b8
Showing 1 changed file with 0 additions and 10 deletions.
Expand Up @@ -20,7 +20,6 @@
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.SelectionChangeEvent;
import com.google.inject.Inject;
import com.google.inject.Provider;

import org.rstudio.core.client.Size;
import org.rstudio.core.client.command.CommandBinder;
Expand All @@ -43,9 +42,6 @@
import org.rstudio.studio.client.workbench.views.BasePresenter;
import org.rstudio.studio.client.workbench.views.vcs.common.events.VcsRefreshEvent;
import org.rstudio.studio.client.workbench.views.vcs.common.events.VcsRefreshHandler;
import org.rstudio.studio.client.workbench.views.vcs.frame.VCSPopup;
import org.rstudio.studio.client.workbench.views.vcs.dialog.HistoryPresenter;
import org.rstudio.studio.client.workbench.views.vcs.dialog.ReviewPresenter;
import org.rstudio.studio.client.workbench.views.vcs.git.model.VcsState;

import java.util.ArrayList;
Expand All @@ -72,8 +68,6 @@ HandlerRegistration addSelectionChangeHandler(
@Inject
public GitPresenter(GitPresenterCore gitCore,
Display view,
Provider<ReviewPresenter> pReviewPresenter,
Provider<HistoryPresenter> pHistoryPresenter,
VCSServerOperations server,
final Commands commands,
Binder commandBinder,
Expand All @@ -85,8 +79,6 @@ public GitPresenter(GitPresenterCore gitCore,
{
super(view);
view_ = view;
pReviewPresenter_ = pReviewPresenter;
pHistoryPresenter_ = pHistoryPresenter;
server_ = server;
commands_ = commands;
vcsState_ = vcsState;
Expand Down Expand Up @@ -259,8 +251,6 @@ private void refresh()
}

private final Display view_;
private final Provider<ReviewPresenter> pReviewPresenter_;
private final Provider<HistoryPresenter> pHistoryPresenter_;
private final VCSServerOperations server_;
private final Commands commands_;
private final VcsState vcsState_;
Expand Down

0 comments on commit 59433b8

Please sign in to comment.