summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLUpdate.scala
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLUpdate.scala')
-rw-r--r--Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLUpdate.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLUpdate.scala b/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLUpdate.scala
deleted file mode 100644
index 43623a523dd..00000000000
--- a/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLUpdate.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-package TeXLive
-
-import scalafx.beans.property.{ObjectProperty, StringProperty}
-
-// Note!!! we have to use ObjectProperty[Int] here instead of IntegerProperty
-// since IntegerProperty does NOT implement Observable[Int,Int]
-// see https://github.com/scalafx/scalafx/issues/243
-case class TLUpdate(name: StringProperty, var status: StringProperty, lrev: StringProperty, rrev: StringProperty,
- shortdesc: StringProperty, size: StringProperty) {
- def this(_name: String, _status: String, _lrev: String, _rrev: String, _shortdesc: String, _size: String) =
- this(
- StringProperty(_name), StringProperty(_status), StringProperty(_lrev), StringProperty(_rrev),
- StringProperty(_shortdesc), StringProperty(_size)
- )
-} \ No newline at end of file