From 9578b67e0e535686b41d3de53d97f7b1a6f3cf48 Mon Sep 17 00:00:00 2001 From: judeng Date: Tue, 5 Apr 2022 13:21:41 +0800 Subject: [PATCH] delete obsolete REDISMODULE_EXPERIMENTAL_API define in module demos (#10527) This macro was recently removed from redismodule.h, so no longer needed. --- src/modules/helloacl.c | 1 - src/modules/helloblock.c | 1 - src/modules/hellocluster.c | 1 - src/modules/hellodict.c | 1 - src/modules/hellohook.c | 1 - src/modules/hellotimer.c | 1 - tests/modules/eventloop.c | 1 - 7 files changed, 7 deletions(-) diff --git a/src/modules/helloacl.c b/src/modules/helloacl.c index 6766c0a58..53f3a440c 100644 --- a/src/modules/helloacl.c +++ b/src/modules/helloacl.c @@ -31,7 +31,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDISMODULE_EXPERIMENTAL_API #include "../redismodule.h" #include #include diff --git a/src/modules/helloblock.c b/src/modules/helloblock.c index afdfeece4..dc3d74975 100644 --- a/src/modules/helloblock.c +++ b/src/modules/helloblock.c @@ -31,7 +31,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDISMODULE_EXPERIMENTAL_API #include "../redismodule.h" #include #include diff --git a/src/modules/hellocluster.c b/src/modules/hellocluster.c index a6508f837..bc145c2b2 100644 --- a/src/modules/hellocluster.c +++ b/src/modules/hellocluster.c @@ -30,7 +30,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDISMODULE_EXPERIMENTAL_API #include "../redismodule.h" #include #include diff --git a/src/modules/hellodict.c b/src/modules/hellodict.c index 2a836c491..12b6e91d2 100644 --- a/src/modules/hellodict.c +++ b/src/modules/hellodict.c @@ -33,7 +33,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDISMODULE_EXPERIMENTAL_API #include "../redismodule.h" #include #include diff --git a/src/modules/hellohook.c b/src/modules/hellohook.c index b451bd975..2859a8b26 100644 --- a/src/modules/hellohook.c +++ b/src/modules/hellohook.c @@ -30,7 +30,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDISMODULE_EXPERIMENTAL_API #include "../redismodule.h" #include #include diff --git a/src/modules/hellotimer.c b/src/modules/hellotimer.c index f6700df26..67e1e6714 100644 --- a/src/modules/hellotimer.c +++ b/src/modules/hellotimer.c @@ -30,7 +30,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDISMODULE_EXPERIMENTAL_API #include "../redismodule.h" #include #include diff --git a/tests/modules/eventloop.c b/tests/modules/eventloop.c index 50d3bc052..c0cfdf04f 100644 --- a/tests/modules/eventloop.c +++ b/tests/modules/eventloop.c @@ -11,7 +11,6 @@ * 4- test.oneshot : Test for oneshot API */ -#define REDISMODULE_EXPERIMENTAL_API #include "redismodule.h" #include #include