Skip to content

Commit 9877de2

Browse files
authored
Merge pull request #1857 from hazendaz/master
[ci] Checkstyle related cleanup
2 parents 42818bf + d135eed commit 9877de2

File tree

33 files changed

+94
-78
lines changed

33 files changed

+94
-78
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
<dependency>
225225
<groupId>org.mockito</groupId>
226226
<artifactId>mockito-junit-jupiter</artifactId>
227-
<version>3.3.0</version>
227+
<version>3.3.3</version>
228228
<scope>test</scope>
229229
</dependency>
230230
<dependency>

src/main/java/org/apache/ibatis/annotations/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Contains all the annotation that are used in mapper interfaces
17+
* Contains all the annotation that are used in mapper interfaces.
1818
*/
1919
package org.apache.ibatis.annotations;
2020

src/main/java/org/apache/ibatis/binding/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,6 +14,6 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Bings mapper interfaces with mapped statements
17+
* Bings mapper interfaces with mapped statements.
1818
*/
1919
package org.apache.ibatis.binding;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2019 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -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/builder/annotation/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,6 +14,6 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Parses annotions to create a Configuration
17+
* Parses annotions to create a Configuration.
1818
*/
1919
package org.apache.ibatis.builder.annotation;

src/main/java/org/apache/ibatis/builder/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,6 +14,6 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Base package for the Configuration building code
17+
* Base package for the Configuration building code.
1818
*/
1919
package org.apache.ibatis.builder;

src/main/java/org/apache/ibatis/builder/xml/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,6 +14,6 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Parses XML files to create a Configuration
17+
* Parses XML files to create a Configuration.
1818
*/
1919
package org.apache.ibatis.builder.xml;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2019 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -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.");

src/main/java/org/apache/ibatis/cache/decorators/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,6 +14,6 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Contains cache decorators
17+
* Contains cache decorators.
1818
*/
1919
package org.apache.ibatis.cache.decorators;

src/main/java/org/apache/ibatis/cache/impl/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2020 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.
@@ -14,6 +14,6 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Contains the default cache implementation
17+
* Contains the default cache implementation.
1818
*/
1919
package org.apache.ibatis.cache.impl;

0 commit comments

Comments
 (0)