blob: 6e2eeaa1607edb202a08f44c67d96e028e35ff4e [file] [log] [blame]
/*
* Copyright (c) 2004 - 2012 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 promoter.util;
/**
* @author Eike Stepper
*/
public final class Util
{
private Util()
{
}
public static String rstrip(String line, String needle)
{
if (line.endsWith(needle))
{
line = line.substring(0, line.length() - needle.length());
}
return line;
}
}