Changed replaceAll() to replace() (sonarqube)
This commit is contained in:
parent
f161ac2e79
commit
2166e166e8
7 changed files with 13 additions and 13 deletions
|
@ -65,7 +65,7 @@ class LocalProperties {
|
|||
}
|
||||
|
||||
private static String keyToEnv(final String key) {
|
||||
return key.replaceAll("-", "_").toUpperCase(Constants.LOCALE);
|
||||
return key.replace("-", "_").toUpperCase(Constants.LOCALE);
|
||||
}
|
||||
|
||||
@BeforeSuite(alwaysRun = true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue