Skip to content

Commit

Permalink
Revert few things.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Mar 25, 2024
1 parent 4efe59f commit e27012f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public interface GenericBaseCommands {
* @see <a href="https://redis.io/commands/expire/">redis.io</a> for details.
* @param key The key to set timeout on it.
* @param seconds The timeout in seconds.
* @param expireOptions The expiration options.
* @param expireOptions The expire options.
* @return <code>true</code> if the timeout was set. <code>false</code> if the timeout was not
* set. e.g. <code>key</code> doesn't exist, or operation skipped due to the provided
* arguments.
Expand Down Expand Up @@ -143,7 +143,7 @@ public interface GenericBaseCommands {
* @see <a href="https://redis.io/commands/expireat/">redis.io</a> for details.
* @param key The key to set timeout on it.
* @param unixSeconds The timeout in an absolute Unix timestamp.
* @param expireOptions The expiration options.
* @param expireOptions The expire options.
* @return <code>true</code> if the timeout was set. <code>false</code> if the timeout was not
* set. e.g. <code>key</code> doesn't exist, or operation skipped due to the provided
* arguments.
Expand Down Expand Up @@ -191,7 +191,7 @@ public interface GenericBaseCommands {
* @see <a href="https://redis.io/commands/pexpire/">redis.io</a> for details.
* @param key The key to set timeout on it.
* @param milliseconds The timeout in milliseconds.
* @param expireOptions The expiration options.
* @param expireOptions The expire options.
* @return <code>true</code> if the timeout was set. <code>false</code> if the timeout was not
* set. e.g. <code>key</code> doesn't exist, or operation skipped due to the provided
* arguments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ public T expire(@NonNull String key, long seconds) {
* @see <a href="https://redis.io/commands/expire/">redis.io</a> for details.
* @param key The key to set timeout on it.
* @param seconds The timeout in seconds.
* @param expireOptions The expiration options.
* @param expireOptions The expire options.
* @return Command response - <code>true</code> if the timeout was set. <code>false</code> if the
* timeout was not set. e.g. <code>key</code> doesn't exist, or operation skipped due to the
* provided arguments.
Expand Down Expand Up @@ -901,7 +901,7 @@ public T expireAt(@NonNull String key, long unixSeconds) {
* @see <a href="https://redis.io/commands/expireat/">redis.io</a> for details.
* @param key The key to set timeout on it.
* @param unixSeconds The timeout in an absolute Unix timestamp.
* @param expireOptions The expiration options.
* @param expireOptions The expire options.
* @return Command response - <code>true</code> if the timeout was set. <code>false</code> if the
* timeout was not set. e.g. <code>key</code> doesn't exist, or operation skipped due to the
* provided arguments.
Expand Down Expand Up @@ -952,7 +952,7 @@ public T pexpire(@NonNull String key, long milliseconds) {
* @see <a href="https://redis.io/commands/pexpire/">redis.io</a> for details.
* @param key The key to set timeout on it.
* @param milliseconds The timeout in milliseconds.
* @param expireOptions The expiration options.
* @param expireOptions The expire options.
* @return Command response - <code>true</code> if the timeout was set. <code>false</code> if the
* timeout was not set. e.g. <code>key</code> doesn't exist, or operation skipped due to the
* provided arguments.
Expand Down

0 comments on commit e27012f

Please sign in to comment.