File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ impl ExecutorGlobals {
51
51
unsafe { self . class_table . as_ref ( ) }
52
52
}
53
53
54
- /// Retrieves the ini values for all ini directives in the current executor context..
54
+ /// Retrieves the ini values for all ini directives in the current executor
55
+ /// context..
55
56
pub fn ini_values ( & self ) -> HashMap < String , Option < String > > {
56
57
let hash_table = unsafe { & * self . ini_directives } ;
57
58
let mut ini_hash_map: HashMap < String , Option < String > > = HashMap :: new ( ) ;
@@ -62,11 +63,15 @@ impl ExecutorGlobals {
62
63
if ini_entry. value . is_null ( ) {
63
64
None
64
65
} else {
65
- Some ( ( * ini_entry. value ) . as_str ( ) . expect ( "Ini value is not a string" ) . to_owned ( ) )
66
+ Some (
67
+ ( * ini_entry. value )
68
+ . as_str ( )
69
+ . expect ( "Ini value is not a string" )
70
+ . to_owned ( ) ,
71
+ )
66
72
}
67
73
} ) ;
68
74
}
69
-
70
75
}
71
76
ini_hash_map
72
77
}
You can’t perform that action at this time.
0 commit comments