parent
aecdf738d3
commit
8417a73913
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2016 the original author or authors.
|
* Copyright 2002-2017 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -471,7 +471,7 @@ public abstract class JdbcUtils {
|
||||||
StringBuilder result = new StringBuilder();
|
StringBuilder result = new StringBuilder();
|
||||||
boolean nextIsUpper = false;
|
boolean nextIsUpper = false;
|
||||||
if (name != null && name.length() > 0) {
|
if (name != null && name.length() > 0) {
|
||||||
if (name.length() > 1 && name.substring(1,2).equals("_")) {
|
if (name.length() > 1 && name.substring(1, 2).equals("_")) {
|
||||||
result.append(name.substring(0, 1).toUpperCase());
|
result.append(name.substring(0, 1).toUpperCase());
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue