src/Tools/jEdit/src/status_widget.scala
changeset 73340 0ffcad1f6130
parent 72976 51442c6dc296
child 75393 87ebf5a50283
--- a/src/Tools/jEdit/src/status_widget.scala	Mon Mar 01 20:12:09 2021 +0100
+++ b/src/Tools/jEdit/src/status_widget.scala	Mon Mar 01 22:22:12 2021 +0100
@@ -50,7 +50,7 @@
 
     def get_status: (String, Double)
 
-    override def paintComponent(gfx: Graphics)
+    override def paintComponent(gfx: Graphics): Unit =
     {
       super.paintComponent(gfx)
 
@@ -89,7 +89,7 @@
     def action: String
 
     addMouseListener(new MouseAdapter {
-      override def mouseClicked(evt: MouseEvent)
+      override def mouseClicked(evt: MouseEvent): Unit =
       {
         if (evt.getClickCount == 2) {
           view.getInputHandler.invokeAction(action)
@@ -114,7 +114,7 @@
         status.heap_used_fraction)
     }
 
-    private def update_status(new_status: Java_Statistics.Memory_Status)
+    private def update_status(new_status: Java_Statistics.Memory_Status): Unit =
     {
       if (status != new_status) {
         status = new_status
@@ -127,18 +127,17 @@
 
     private val timer =
       new Timer(500, new ActionListener {
-        override def actionPerformed(e: ActionEvent) {
+        override def actionPerformed(e: ActionEvent): Unit =
           update_status(Java_Statistics.memory_status())
-        }
       })
 
-    override def addNotify()
+    override def addNotify(): Unit =
     {
       super.addNotify()
       timer.start()
     }
 
-    override def removeNotify()
+    override def removeNotify(): Unit =
     {
       super.removeNotify()
       timer.stop()
@@ -176,7 +175,7 @@
             status.heap_used_fraction)
       }
 
-    private def update_status(new_status: ML_Statistics.Memory_Status)
+    private def update_status(new_status: ML_Statistics.Memory_Status): Unit =
     {
       if (status != new_status) {
         status = new_status
@@ -194,13 +193,13 @@
           GUI_Thread.later { update_status(status) }
       }
 
-    override def addNotify()
+    override def addNotify(): Unit =
     {
       super.addNotify()
       PIDE.session.runtime_statistics += main
     }
 
-    override def removeNotify()
+    override def removeNotify(): Unit =
     {
       super.removeNotify()
       PIDE.session.runtime_statistics -= main