changeset 80378 | ab4badc7db7f |
parent 80365 | 29b761e290c5 |
child 80441 | c420429fdf4c |
--- a/src/Pure/General/file.scala Sat Jun 15 21:59:31 2024 +0200 +++ b/src/Pure/General/file.scala Sat Jun 15 22:43:01 2024 +0200 @@ -355,7 +355,7 @@ def eq_content(file1: JFile, file2: JFile): Boolean = if (eq(file1, file2)) true else if (file1.length != file2.length) false - else SHA1.digest(file1) == SHA1.digest(file2) + else Bytes.read(file1) == Bytes.read(file2) def eq_content(path1: Path, path2: Path): Boolean = eq_content(path1.file, path2.file)