summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.scala
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.scala')
-rw-r--r--Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.scala b/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.scala
deleted file mode 100644
index 9a797d9c8ae..00000000000
--- a/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.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 TLPackage(name: StringProperty, lrev: ObjectProperty[Int], rrev: ObjectProperty[Int],
- shortdesc: StringProperty, size: ObjectProperty[Int], installed: StringProperty) {
- def this(_name: String, _lrev: String, _rrev: String, _shortdesc: String, _size: String, _installed: String) =
- this(
- StringProperty(_name), ObjectProperty[Int](_lrev.toInt), ObjectProperty[Int](_rrev.toInt),
- StringProperty(_shortdesc), ObjectProperty[Int](_size.toInt), StringProperty(_installed)
- )
-} \ No newline at end of file