Fix indentation in Msf::DBManager

MSP-11124
bug/bundler_fix
Luke Imhoff 2014-10-13 15:26:19 -05:00
parent c6ea3a3880
commit ef04261686
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
1 changed files with 1 additions and 9 deletions

View File

@ -21,16 +21,9 @@ require 'msf/core/host_state'
require 'msf/core/service_state'
require 'msf/core/task_manager'
module Msf
###
#
# The db module provides persistent storage and events. This class should be instantiated LAST
# as the active_suppport library overrides Kernel.require, slowing down all future code loads.
#
###
class DBManager
class Msf::DBManager
extend Metasploit::Framework::Require
autoload :Adapter, 'msf/core/db_manager/adapter'
@ -186,4 +179,3 @@ class DBManager
end
end
end
end