From 2c83fb821b172117c5d0d84095bc211157bb6bc1 Mon Sep 17 00:00:00 2001 From: Maxim Solovyov Date: Sat, 22 Jul 2023 01:04:18 +0300 Subject: [PATCH] config: drop kawase blur method it was added with intention to remove it later almost three years ago in 33c5a5a36b1ccf1da72a9e95079dcc4e3713dce9 --- src/config.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/config.c b/src/config.c index c695433..7c041ae 100644 --- a/src/config.c +++ b/src/config.c @@ -191,11 +191,6 @@ enum blur_method parse_blur_method(const char *src) { return BLUR_METHOD_GAUSSIAN; } else if (strcmp(src, "dual_kawase") == 0) { return BLUR_METHOD_DUAL_KAWASE; - } else if (strcmp(src, "kawase") == 0) { - log_warn("Blur method 'kawase' has been renamed to 'dual_kawase'. " - "Interpreted as 'dual_kawase', but this will stop working " - "soon."); - return BLUR_METHOD_DUAL_KAWASE; } else if (strcmp(src, "none") == 0) { return BLUR_METHOD_NONE; }