Skip to content

Commit

Permalink
Update checkstyle to 8.10.1 (#31269)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlrx authored Jun 13, 2018
1 parent 16d593b commit 1f6e874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class PrecommitTasks {
configProperties = [
suppressions: checkstyleSuppressions
]
toolVersion = 7.5
toolVersion = '8.10.1'
}

project.tasks.withType(Checkstyle) { task ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public enum Transports {
* used in assertions to make sure that we do not call blocking code from
* networking threads.
*/
public static final boolean isTransportThread(Thread t) {
public static boolean isTransportThread(Thread t) {
final String threadName = t.getName();
for (String s : Arrays.asList(
HttpServerTransport.HTTP_SERVER_WORKER_THREAD_NAME_PREFIX,
Expand Down

0 comments on commit 1f6e874

Please sign in to comment.