From 8bafc7b4b6587a996042a38779257c1061ba27af Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Mon, 11 Mar 2024 01:40:05 +0800 Subject: [PATCH] fix: remove debug print Signed-off-by: Jack Cherng --- src/Differ.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Differ.php b/src/Differ.php index 429732f..ce1bd03 100644 --- a/src/Differ.php +++ b/src/Differ.php @@ -290,8 +290,6 @@ public function getStatistics(): array } } - var_dump($this->oldSrcLength); - $ret['unmodified'] = $this->oldSrcLength - $ret['deleted']; $ret['changedRatio'] = 1 - ($ret['unmodified'] / $this->oldSrcLength);