Remove System.out.println from RevWalkFilterTest
[jgit.git] / org.spearce.egit.ui / src / org / spearce / egit / ui / internal / actions / ResetQuickdiffBaselineHeadParentAction.java
blob85a99982d2623bf04537d85bf8326a0d9665dde0
1 /*******************************************************************************
2 * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * See LICENSE for the full license text, also available.
7 *******************************************************************************/
8 package org.spearce.egit.ui.internal.actions;
10 import java.util.List;
12 import org.eclipse.core.resources.IWorkspaceRunnable;
13 import org.eclipse.jface.action.IAction;
15 /**
16 * Changes the reference for the quickdiff to the (first) parent of HEAD
18 public class ResetQuickdiffBaselineHeadParentAction extends AbstractRevObjectAction {
20 @Override
21 protected IWorkspaceRunnable createOperation(IAction act, List selection) {
22 return new QuickdiffBaselineOperation(getActiveRepository(), "HEAD^1");