diff -r a45cb064709b -r a7d9edd2e63b src/Pure/System/isabelle_system.scala --- a/src/Pure/System/isabelle_system.scala Sat Feb 27 19:42:44 2021 +0100 +++ b/src/Pure/System/isabelle_system.scala Sat Feb 27 19:45:33 2021 +0100 @@ -218,7 +218,7 @@ def copy_file(src: JFile, dst: JFile): Unit = { val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst - if (!eq(src, target)) { + if (!File.eq(src, target)) { Files.copy(src.toPath, target.toPath, StandardCopyOption.COPY_ATTRIBUTES, StandardCopyOption.REPLACE_EXISTING) @@ -241,7 +241,7 @@ def move_file(src: JFile, dst: JFile) { val target = if (dst.isDirectory) new JFile(dst, src.getName) else dst - if (!eq(src, target)) + if (!File.eq(src, target)) Files.move(src.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING) }