From 2d252ab094a9fe5d4491e362a9109defead980ad Mon Sep 17 00:00:00 2001 From: Luke Imhoff Date: Tue, 2 Oct 2012 16:33:11 -0500 Subject: [PATCH] Remove unused extend ActiveSupport::Concern I wasn't using any the features of ActiveSupport::Concern in Msf::ModuleManager::Reloading, so remove the extend and just include it as a regular module. --- lib/msf/core/module_manager/reloading.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/msf/core/module_manager/reloading.rb b/lib/msf/core/module_manager/reloading.rb index ed9d97b8ea..f98b08b619 100644 --- a/lib/msf/core/module_manager/reloading.rb +++ b/lib/msf/core/module_manager/reloading.rb @@ -1,7 +1,5 @@ # Concerns reloading modules module Msf::ModuleManager::Reloading - extend ActiveSupport::Concern - # Reloads the module specified in mod. This can either be an instance of a module or a module class. # # @param [Msf::Module, Class] mod either an instance of a module or a module class