File tree 1 file changed +3
-3
lines changed
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class SqlGenerator {
69
69
/**
70
70
* Length of an aggregate path that is one longer then the root path.
71
71
*/
72
- private static final int FIRST_NON_ROOT_LENTH = 2 ;
72
+ private static final int FIRST_NON_ROOT_LENGTH = 2 ;
73
73
74
74
private final RelationalPersistentEntity <?> entity ;
75
75
private final RelationalMappingContext mappingContext ;
@@ -131,7 +131,7 @@ class SqlGenerator {
131
131
* @return If the given path is considered deeply nested.
132
132
*/
133
133
private static boolean isFirstNonRoot (AggregatePath path ) {
134
- return path .getLength () == FIRST_NON_ROOT_LENTH ;
134
+ return path .getLength () == FIRST_NON_ROOT_LENGTH ;
135
135
}
136
136
137
137
/**
@@ -148,7 +148,7 @@ private static boolean isFirstNonRoot(AggregatePath path) {
148
148
* @return If the given path is considered deeply nested.
149
149
*/
150
150
private static boolean isDeeplyNested (AggregatePath path ) {
151
- return path .getLength () > FIRST_NON_ROOT_LENTH ;
151
+ return path .getLength () > FIRST_NON_ROOT_LENGTH ;
152
152
}
153
153
154
154
/**
You can’t perform that action at this time.
0 commit comments