From b49d4e18a67d16548fa72013237a87564656170e Mon Sep 17 00:00:00 2001 From: dundargoc Date: Mon, 1 Jan 2024 15:56:00 +0100 Subject: refactor: remove redundant NOLINT comments --- src/nvim/buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/buffer.c') diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 41ab7ae13d..c22aaec3df 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -276,7 +276,7 @@ int open_buffer(bool read_stdin, exarg_T *eap, int flags_arg) || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname)) # endif - )) { // NOLINT(whitespace/parens) + )) { read_fifo = true; } if (read_fifo) { @@ -2145,7 +2145,7 @@ buf_T *buflist_findname_exp(char *fname) #else false #endif - ); // NOLINT(whitespace/parens) + ); if (ffname != NULL) { buf = buflist_findname(ffname); xfree(ffname); -- cgit