File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -581,12 +581,12 @@ where
581581 if FileTime :: from_last_modification_time ( out_rs_md)
582582 > FileTime :: from_last_modification_time ( inmd)
583583 {
584- if let Ok ( mut outc) = read_to_string ( outp) {
584+ if let Ok ( outc) = read_to_string ( outp) {
585585 // Strip whitespace from the output file and the cache since the copy of
586586 // the cache in the output file may be affected by pretty printing.
587- let mut cache = cache. to_string ( ) ;
588- outc. retain ( |c| !c. is_whitespace ( ) ) ;
589- cache. retain ( |c| !c. is_whitespace ( ) ) ;
587+ let cache = cache. to_string ( ) ;
588+ // outc.retain(|c| !c.is_whitespace());
589+ // cache.retain(|c| !c.is_whitespace());
590590 if outc. contains ( & cache) {
591591 return Ok ( CTParser {
592592 regenerated : false ,
You can’t perform that action at this time.
0 commit comments