summaryrefslogtreecommitdiffstats
path: root/timer/com/vladium/utils/timing/ITimerConstants.java
diff options
context:
space:
mode:
authorRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-08-28 20:31:35 +0400
committerRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-08-28 20:31:35 +0400
commit270a3f6e22782278a5254c4c073cad2ad8b6ccf8 (patch)
tree55ea555868fdab92eff97395d36aa83599f0cf39 /timer/com/vladium/utils/timing/ITimerConstants.java
parentb3705cf40072203386d784c161419cbcc9e9d164 (diff)
downloadfernflower-270a3f6e22782278a5254c4c073cad2ad8b6ccf8.tar
fernflower-270a3f6e22782278a5254c4c073cad2ad8b6ccf8.tar.gz
fernflower-270a3f6e22782278a5254c4c073cad2ad8b6ccf8.tar.lz
fernflower-270a3f6e22782278a5254c4c073cad2ad8b6ccf8.tar.xz
fernflower-270a3f6e22782278a5254c4c073cad2ad8b6ccf8.zip
java-decompiler: post-import cleanup (unneeded files dropped)
Diffstat (limited to 'timer/com/vladium/utils/timing/ITimerConstants.java')
-rw-r--r--timer/com/vladium/utils/timing/ITimerConstants.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/timer/com/vladium/utils/timing/ITimerConstants.java b/timer/com/vladium/utils/timing/ITimerConstants.java
deleted file mode 100644
index 29435ae..0000000
--- a/timer/com/vladium/utils/timing/ITimerConstants.java
+++ /dev/null
@@ -1,31 +0,0 @@
-
-package com.vladium.utils.timing;
-
-// ----------------------------------------------------------------------------
-/**
- * A package-private collection of constants used by {@link ITimer} implementations
- * in <code>HRTimer</code> and <code>JavaSystemTimer</code> classes.
- *
- * @author (C) <a href="mailto:vroubtsov@illinoisalumni.org">Vlad Roubtsov</a>, 2002
- */
-interface ITimerConstants
-{
- // public: ................................................................
-
- /**
- * Conditional compilation flag to enable/disable state checking in timer
- * implementations. Just about the only reason you might want to disable
- * this is to reduce the timer overhead, but in practice the gain is very
- * small. */
- static final boolean DO_STATE_CHECKS = true;
-
- /**
- * Timer state enumeration. */
- static final int STATE_READY = 0, STATE_STARTED = 1, STATE_STOPPED = 2;
-
- /**
- * User-friendly timer state names indexed by their state values. */
- static final String [] STATE_NAMES = {"READY", "STARTED", "STOPPED"};
-
-} // end of interface
-// ----------------------------------------------------------------------------