src/Pure/Thy/export.scala
changeset 69756 1907222d974e
parent 69671 2486792eaf61
child 69788 c175499a7537
--- a/src/Pure/Thy/export.scala	Wed Jan 30 13:25:33 2019 +0100
+++ b/src/Pure/Thy/export.scala	Wed Jan 30 14:35:15 2019 +0100
@@ -13,13 +13,10 @@
 
 object Export
 {
-  /* structured name */
+  /* name structure */
 
-  val sep_char: Char = '/'
-  val sep: String = sep_char.toString
-
-  def explode_name(s: String): List[String] = space_explode(sep_char, s)
-  def implode_name(elems: Iterable[String]): String = elems.mkString(sep)
+  def explode_name(s: String): List[String] = space_explode('/', s)
+  def implode_name(elems: Iterable[String]): String = elems.mkString("/")
 
 
   /* SQL data model */