Skip to content

Commit d527acd

Browse files
committed
[ci] Correct spacing
1 parent 90a4686 commit d527acd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/apache/ibatis/builder/annotation/ProviderSqlSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ private SqlSource createSqlSource(Object parameterObject) {
172172

173173
private Throwable extractRootCause(Exception e) {
174174
Throwable cause = e;
175-
while(cause.getCause() != null) {
175+
while (cause.getCause() != null) {
176176
cause = cause.getCause();
177177
}
178178
return cause;

src/main/java/org/apache/ibatis/cache/CacheKey.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class CacheKey implements Cloneable, Serializable {
2929

3030
private static final long serialVersionUID = 1146682552656046210L;
3131

32-
public static final CacheKey NULL_CACHE_KEY = new CacheKey(){
32+
public static final CacheKey NULL_CACHE_KEY = new CacheKey() {
3333
@Override
3434
public void update(Object object) {
3535
throw new CacheException("Not allowed to update a null cache key instance.");

0 commit comments

Comments
 (0)