File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,13 @@ class IMAP
23
23
#
24
24
module SASL
25
25
26
- # autoloading to avoid loading all of the regexps when they aren't used.
27
-
28
- sasl_stringprep_rb = File . expand_path ( "sasl/stringprep" , __dir__ )
29
- autoload :StringPrep , sasl_stringprep_rb
30
- autoload :SASLprep , sasl_stringprep_rb
31
- autoload :StringPrepError , sasl_stringprep_rb
32
- autoload :ProhibitedCodepoint , sasl_stringprep_rb
33
- autoload :BidiStringError , sasl_stringprep_rb
26
+ stringprep_path = File . expand_path ( "sasl/stringprep" , __dir__ )
27
+ autoload :StringPrep , stringprep_path
28
+ autoload :SASLprep , stringprep_path
29
+ autoload :StringPrepError , stringprep_path
30
+ autoload :ProhibitedCodepoint , stringprep_path
31
+ autoload :BidiStringError , stringprep_path
32
+
34
33
35
34
module_function
36
35
You can’t perform that action at this time.
0 commit comments