Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ffae96e490a8c0138d79245438fa2013c554abea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*******************************************************************************
 * Copyright (C) 2010, Mathias Kinzler <mathias.kinzler@sap.com>
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *******************************************************************************/
package org.eclipse.egit.ui.internal.actions;

/**
 * Action for "simple" push
 */
public class SimpleFetchAction extends RepositoryAction {
	/**
	 *
	 */
	public SimpleFetchAction() {
		super(ActionCommands.SIMPLE_FETCH_ACTION, new SimpleFetchActionHandler());
	}
}

Back to the top