replace(string, string) to replace(char, char) [spotbugs]
This commit is contained in:
parent
4ccdcb95c3
commit
d7e1cf9132
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ class LocalProperties {
|
|||
}
|
||||
|
||||
private static String keyToEnv(final String key) {
|
||||
return key.replace("-", "_").toUpperCase(Constants.LOCALE);
|
||||
return key.replace('-', '_').toUpperCase(Constants.LOCALE);
|
||||
}
|
||||
|
||||
@BeforeSuite(alwaysRun = true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue