Skip to content

Commit

Permalink
[misc] javadoc formatting correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Nov 15, 2024
1 parent 3f1706e commit b7f38ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
5 changes: 3 additions & 2 deletions src/main/java/org/mariadb/jdbc/message/server/OkPacket.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,9 @@ public long getLastInsertId() {
}

/**
* Get ok packet info byte array.
* That is usually a string value, but for first Ok_Packet, containing fingerprint info.
* Get ok packet info byte array. That is usually a string value, but for first Ok_Packet,
* containing fingerprint info.
*
* @return info
*/
public byte[] getInfo() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class ParsecPasswordPluginTool {

/**
* Bouncy Castle implementation to get raw public key from raw private key
*
* @param rawPrivateKey raw ed25519 private key
* @return raw public key
* @throws SQLException exception
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
// Copyright (c) 2015-2024 MariaDB Corporation Ab
package org.mariadb.jdbc.util.timeout;

/**
* Default no op query timeout.
*/
/** Default no op query timeout. */
public class NoOpQueryTimeoutHandler implements QueryTimeoutHandler {
public static final NoOpQueryTimeoutHandler INSTANCE = new NoOpQueryTimeoutHandler();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
// Copyright (c) 2015-2024 MariaDB Corporation Ab
package org.mariadb.jdbc.util.timeout;

/**
* Query Timeout handler for server that doesn't support query specific timeout
*/
/** Query Timeout handler for server that doesn't support query specific timeout */
public interface QueryTimeoutHandler extends AutoCloseable {
QueryTimeoutHandler create(int queryTimeout);

Expand Down

0 comments on commit b7f38ea

Please sign in to comment.