prefer standard getOrElse;
authorwenzelm
Thu, 04 May 2017 12:30:19 +0200
changeset 65715 e57e5935c6b4
parent 65714 7693ba6d65bc
child 65716 678e00851cfb
prefer standard getOrElse;
src/Pure/Admin/build_release.scala
src/Pure/ROOT.scala
src/Pure/library.scala
--- a/src/Pure/Admin/build_release.scala	Thu May 04 12:27:18 2017 +0200
+++ b/src/Pure/Admin/build_release.scala	Thu May 04 12:30:19 2017 +0200
@@ -55,7 +55,7 @@
     val release_info =
     {
       val date = Date.now()
-      val name = proper_string_default(release_name, "Isabelle_" + Date.Format.date(date))
+      val name = proper_string(release_name) getOrElse ("Isabelle_" + Date.Format.date(date))
       val dist_dir = base_dir + Path.explode("dist-" + name)
       val dist_archive = dist_dir + Path.explode(name + ".tar.gz")
       val dist_library_archive = dist_dir + Path.explode(name + "_library.tar.gz")
--- a/src/Pure/ROOT.scala	Thu May 04 12:27:18 2017 +0200
+++ b/src/Pure/ROOT.scala	Thu May 04 12:30:19 2017 +0200
@@ -19,5 +19,4 @@
   val commas = Library.commas _
   val commas_quote = Library.commas_quote _
   val proper_string = Library.proper_string _
-  val proper_string_default = Library.proper_string_default _
 }
--- a/src/Pure/library.scala	Thu May 04 12:27:18 2017 +0200
+++ b/src/Pure/library.scala	Thu May 04 12:30:19 2017 +0200
@@ -147,9 +147,6 @@
   def proper_string(s: String): Option[String] =
     if (s == "") None else Some(s)
 
-  def proper_string_default(s: String, default: => String): String =
-    if (s == "") default else s
-
 
   /* quote */