Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / location / TmfTimestampLocation.java
index 06b997db40dcfbaeb3bdfe7596e66c0e6dd239a9..5ed344cd78de8d325c46f0ca08e6fafb7d19b49d 100644 (file)
@@ -21,7 +21,6 @@ import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestamp;
  * A concrete implementation of TmfLocation based on ITmfTimestamp:s
  *
  * @author Francois Chouinard
- * @since 3.0
  */
 public final class TmfTimestampLocation extends TmfLocation {
 
@@ -48,8 +47,6 @@ public final class TmfTimestampLocation extends TmfLocation {
      *
      * @param bufferIn
      *            the buffer to read from
-     *
-     * @since 3.0
      */
     public TmfTimestampLocation(ByteBuffer bufferIn) {
         super(new TmfTimestamp(bufferIn));
@@ -60,9 +57,6 @@ public final class TmfTimestampLocation extends TmfLocation {
         return (ITmfTimestamp) super.getLocationInfo();
     }
 
-    /**
-     * @since 3.0
-     */
     @Override
     public void serialize(ByteBuffer bufferOut) {
         TmfTimestamp t = new TmfTimestamp(getLocationInfo());
This page took 0.028383 seconds and 5 git commands to generate.