mirror of
https://github.com/lightbend/config.git
synced 2025-01-15 23:01:05 +08:00
toCamelCase doesn't need to be public anymore
This commit is contained in:
parent
b692e988a6
commit
e522071442
@ -231,11 +231,7 @@ final public class ConfigImplUtil {
|
||||
null);
|
||||
}
|
||||
|
||||
/**
|
||||
* This is public ONLY for use by the "config" package, DO NOT USE this ABI
|
||||
* may change.
|
||||
*/
|
||||
public static String toCamelCase(String originalName) {
|
||||
static String toCamelCase(String originalName) {
|
||||
String[] words = originalName.split("-+");
|
||||
StringBuilder nameBuilder = new StringBuilder(originalName.length());
|
||||
for (String word : words) {
|
||||
|
Loading…
Reference in New Issue
Block a user