blob: 01908463d95360e414f05ab83ebad7495b4b220b [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2015, Max Hohenegger <eclipse@hohenegger.eu>
*
* 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.gitflow.ui.internal;
/**
* Preferences used by the Gitflow UI plug-in.
* <p>
* All plug-in preferences shall be referenced by a constant in this class.
*/
public final class UIPreferences {
private UIPreferences() {
// No instantiation
}
/** */
public final static String FEATURE_FINISH_SQUASH = "feature_finish_squash"; //$NON-NLS-1$
/** */
public final static String FEATURE_FINISH_KEEP_BRANCH = "feature_finish_keep_branch"; //$NON-NLS-1$
}