Mark @Duplicated to TransactionBlock and PipelineBlock related classes /

methods
This commit is contained in:
Jungtaek Lim
2014-02-10 07:55:27 +09:00
parent 51a4bf9a56
commit 1ed231cf15
6 changed files with 31 additions and 103 deletions

View File

@@ -1,5 +1,11 @@
package redis.clients.jedis;
@Deprecated
/**
* This method is deprecated due to its error prone with multi
* and will be removed on next major release
* @see https://github.com/xetorthio/jedis/pull/498
*/
public abstract class PipelineBlock extends Pipeline {
public abstract void execute();
}