unused;
authorwenzelm
Thu, 19 Sep 2019 16:42:27 +0200
changeset 70739 29243d779b61
parent 70736 dea35c31a0b8
child 70740 525c18b8ed53
unused;
src/Pure/Thy/sessions.scala
--- a/src/Pure/Thy/sessions.scala	Thu Sep 19 16:38:32 2019 +0200
+++ b/src/Pure/Thy/sessions.scala	Thu Sep 19 16:42:27 2019 +0200
@@ -71,13 +71,6 @@
   sealed case class Known(
     theories: Map[String, Document.Node.Entry] = Map.empty,
     loaded_files: Map[String, List[Path]] = Map.empty)
-  {
-    def platform_path: Known =
-      copy(theories = for ((a, b) <- theories) yield (a, b.map(File.platform_path(_))))
-
-    def standard_path: Known =
-      copy(theories = for ((a, b) <- theories) yield (a, b.map(File.standard_path(_))))
-  }
 
   object Base
   {