Skip to content

Commit 06e96ed

Browse files
committed
reintroduce the cache breakage to test the ci changes
1 parent 0ca85cf commit 06e96ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lrpar/src/lib/ctbuilder.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)