File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-jdbc/src/main/java/org/springframework/jdbc/support Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2002-2016 the original author or authors.
2+ * Copyright 2002-2017 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
@@ -471,7 +471,7 @@ public static String convertUnderscoreNameToPropertyName(String name) {
471471 StringBuilder result = new StringBuilder ();
472472 boolean nextIsUpper = false ;
473473 if (name != null && name .length () > 0 ) {
474- if (name .length () > 1 && name .substring (1 ,2 ).equals ("_" )) {
474+ if (name .length () > 1 && name .substring (1 , 2 ).equals ("_" )) {
475475 result .append (name .substring (0 , 1 ).toUpperCase ());
476476 }
477477 else {
You can’t perform that action at this time.
0 commit comments