blob: 7ae29b60578943b76978c6f1566c6ffa0ba006c8 [file] [log] [blame]
/*
* Copyright (c) 2022 Eike Stepper (Loehne, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.lm.client;
/**
* @author Eike Stepper
*/
public final class LMClientUtil
{
private LMClientUtil()
{
}
public static String getChangeBranchName(String changeLabel)
{
int NamingStrategy;
return "change-" + changeLabel.trim().replace('/', '-').replace(' ', '-');
}
}