summaryrefslogtreecommitdiff
path: root/sources/core/time/VSTime.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/core/time/VSTime.java')
-rw-r--r--sources/core/time/VSTime.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/sources/core/time/VSTime.java b/sources/core/time/VSTime.java
deleted file mode 100644
index d46e0e4..0000000
--- a/sources/core/time/VSTime.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package core.time;
-
-/**
- * This interface is a guidline for general time format classes.
- *
- * @author Paul C. Buetow
- */
-public interface VSTime {
- /**
- * Gets the global time.
- *
- * @return The global time
- */
- public long getGlobalTime();
-
- /**
- * Returns a string representation.
- *
- * @return The representation of the implementing object as a string
- */
- public String toString();
-}