Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f73d8e8f59bbf79787e2603f9ac18a6526db4dd2 (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
24
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.internal.editors.text;

/**
 * A file buffer operation action that changes the line delimiters to a Unix
 * line delimiter.
 *
 * @since 3.1
 */
public class ConvertLineDelimitersToUnix extends ConvertLineDelimitersAction {

	public ConvertLineDelimitersToUnix() {
		super("\n", TextEditorMessages.ConvertLineDelimitersToUnix_label); //$NON-NLS-1$
	}
}

Back to the top