Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1c117b128a5ed9fd679d3780a33ce7e8637724e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Created on Mar 29, 2011
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.ats.config.copy;

public class CopyAtsUtil {

   public static String getConvertedName(ConfigData configData, String name) {
      return name.replaceFirst(configData.getSearchStr(), configData.getReplaceStr());
   }

}

Back to the top