blob: 674e7465c2c43b50971c0253ab09f6f4e923f3f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 Institute for Software, HSR Hochschule fuer Technik
* Rapperswil, University of applied sciences 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:
* Institute for Software - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.ui.tests.refactoring;
public class TestHelper {
public static String unifyNewLines(String code) {
String replacement = System.getProperty("line.separator"); //$NON-NLS-1$
return code.replaceAll("(\n)|(\r\n)", replacement); //$NON-NLS-1$
}
}