The final restructured version for automatic build using maven tycho
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / timeline / TimelineEvent.java
diff --git a/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/TimelineEvent.java b/net.mograsim.logic.core/src/net/mograsim/logic/core/timeline/TimelineEvent.java
deleted file mode 100644 (file)
index c46e6ad..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-package net.mograsim.logic.core.timeline;
-
-/**
- * A class that stores all relevant information about an event in the {@link Timeline}. Currently, there is not much relevant information to
- * store.
- * 
- * @author Fabian Stemmler
- *
- */
-public class TimelineEvent
-{
-       private final long timing;
-
-       TimelineEvent(long timing)
-       {
-               super();
-               this.timing = timing;
-       }
-
-       public long getTiming()
-       {
-               return timing;
-       }
-
-       @Override
-       public String toString()
-       {
-               return "timestamp: " + timing;
-       }
-}
\ No newline at end of file