Skip to content

Commit 6bb1b83

Browse files
author
HD Moore
committed
Align the comments with the space indents for now
1 parent 286b869 commit 6bb1b83

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/msf/core/modules/loader/base.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -372,10 +372,10 @@ def create_namespace_module(namespace_module_names)
372372
def current_module(module_names)
373373
# Don't want to trigger ActiveSupport's const_missing, so can't use constantize.
374374
named_module = module_names.inject(Object) { |parent, module_name|
375-
# Since we're searching parent namespaces first anyway, this is
376-
# semantically equivalent to providing false for the 1.9-only
377-
# "inherit" parameter to const_defined?. If we ever drop 1.8
378-
# support, we can save a few cycles here by adding it back.
375+
# Since we're searching parent namespaces first anyway, this is
376+
# semantically equivalent to providing false for the 1.9-only
377+
# "inherit" parameter to const_defined?. If we ever drop 1.8
378+
# support, we can save a few cycles here by adding it back.
379379
if parent.const_defined?(module_name)
380380
parent.const_get(module_name)
381381
else

0 commit comments

Comments
 (0)