Skip to content

Commit c05641d

Browse files
authored
Bump checkstyle-plugin to 3.1.1. (#208)
1 parent b171477 commit c05641d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

connector-j-8/src/main/java/com/google/cloud/sql/mysql/SocketFactory.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public <T extends Closeable> T connect(
5252
// Cloud SQL sockets always use TLS and the socket returned by connect above is already TLS-ready.
5353
// It is fine to implement these as no-ops.
5454
@Override
55-
public void beforeHandshake() {}
55+
public void beforeHandshake() {
56+
}
5657

5758
@Override
5859
public <T extends Closeable> T performTlsHandshake(
@@ -63,5 +64,6 @@ public <T extends Closeable> T performTlsHandshake(
6364
}
6465

6566
@Override
66-
public void afterHandshake() {}
67+
public void afterHandshake() {
68+
}
6769
}

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
<plugin>
140140
<groupId>org.apache.maven.plugins</groupId>
141141
<artifactId>maven-checkstyle-plugin</artifactId>
142-
<version>3.1.0</version>
142+
<version>3.1.1</version>
143143
<configuration>
144144
<configLocation>google_checks.xml</configLocation>
145145
<logViolationsToConsole>true</logViolationsToConsole>

0 commit comments

Comments
 (0)