Skip to content

Commit

Permalink
Refine javadoc for the deprecated method
Browse files Browse the repository at this point in the history
Co-authored-by: M Sazzadul Hoque <[email protected]>
  • Loading branch information
gerzse and sazzad16 authored Mar 15, 2024
1 parent e28745a commit ccf1367
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ default Response<ScanResult<String>> sscan(String key, String cursor) {
Response<Long> sdiffstore(String dstKey, String... keys);

/**
* @deprecated Use {@code redis.clients.jedis.commands.SetPipelineCommands#sdiffstore(java.lang.String, java.lang.String...)}
* @deprecated Use {@link SetPipelineCommands#sdiffstore(java.lang.String, java.lang.String...)}.
*/
@Deprecated
default Response<Long> sdiffStore(String dstKey, String... keys) {
return sdiffstore(dstKey, keys);
}
Expand Down

0 comments on commit ccf1367

Please sign in to comment.