Platform.timeCheck - just resetting duration for
authorhansonr <hansonr@STO24954W.ad.stolaf.edu>
Thu, 8 Aug 2019 00:34:13 +0000 (19:34 -0500)
committerhansonr <hansonr@STO24954W.ad.stolaf.edu>
Thu, 8 Aug 2019 00:34:13 +0000 (19:34 -0500)
reset/set-mark..set-mark/get sequence.

src/jalview/util/Platform.java

index 6d95747..fba669b 100644 (file)
@@ -276,6 +276,8 @@ public class Platform
    * 
    * Platform.timeCheck("some message", Platform.TIME_MARK);
    * 
+   * reset...[set/mark]n...get
+   * 
    * @param msg
    * @param mode
    */
@@ -286,6 +288,7 @@ public class Platform
     {
     case TIME_RESET:
       time = mark = t;
+      duration = 0;
       if (msg != null)
       {
         System.err.println("Platform: timer reset\t\t\t" + msg);
@@ -294,6 +297,7 @@ public class Platform
     case TIME_MARK:
       if (set > 0)
       {
+        // total time between set/mark points
         duration += (t - set);
       }
       else
@@ -316,7 +320,7 @@ public class Platform
     case TIME_GET:
       if (msg != null)
       {
-        System.err.println("Platform: timer dur\t" + ((t - time) / 1000f)
+        System.err.println("Platform: timer get\t" + ((t - time) / 1000f)
                 + "\t" + ((duration) / 1000f) + "\t" + msg);
       }
       set = 0;