From 68a0d3df7192f2480b9e21c687357988722bece8 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Tue, 19 Sep 2023 12:08:16 +0900 Subject: [PATCH] Remove unused `extend AutoCorrector` --- lib/rubocop/cop/rails/unused_render_content.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/rubocop/cop/rails/unused_render_content.rb b/lib/rubocop/cop/rails/unused_render_content.rb index 254c354b71..d04ac6519b 100644 --- a/lib/rubocop/cop/rails/unused_render_content.rb +++ b/lib/rubocop/cop/rails/unused_render_content.rb @@ -17,7 +17,6 @@ module Rails # render status: :continue # render status: 100 class UnusedRenderContent < Base - extend AutoCorrector include RangeHelp MSG = 'Do not specify body content for a response with a non-content status code'