Skip to content

Commit a738251

Browse files
committed
refactor(BinaryLogClient): add whitespace before ternary '?' for checkstyle
1 parent 1ffa518 commit a738251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/shyiko/mysql/binlog/BinaryLogClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ private void switchAuthentication(byte[] authenticationResult, boolean usingSSLS
748748
String scramble = buffer.readZeroTerminatedString();
749749

750750
Command switchCommand = new AuthenticateNativePasswordCommand(scramble, password);
751-
channel.writeBuffered(switchCommand, (usingSSLSocket? 4 : 3));
751+
channel.writeBuffered(switchCommand, (usingSSLSocket ? 4 : 3));
752752
byte[] authResult = channel.read();
753753

754754
if (authResult[0] != (byte) 0x00) {

0 commit comments

Comments
 (0)