Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ctf.core / src / org / eclipse / tracecompass / tmf / ctf / core / context / CtfLocationInfo.java
index e8f52a770f53e80e83040f3d3eadac4947fe90c9..fce69dbd2edd12d8eeb02fc06f797b1662ad1296 100644 (file)
@@ -17,7 +17,6 @@ import java.nio.ByteBuffer;
  * The data object to go in a {@link CtfLocation}.
  *
  * @author Matthew Khouzam
- * @since 2.0
  */
 public class CtfLocationInfo implements Comparable<CtfLocationInfo> {
 
@@ -41,8 +40,6 @@ public class CtfLocationInfo implements Comparable<CtfLocationInfo> {
      *
      * @param bufferIn
      *            the buffer to read from
-     *
-     * @since 3.0
      */
     public CtfLocationInfo(ByteBuffer bufferIn) {
         fTimestamp = bufferIn.getLong();
@@ -128,8 +125,6 @@ public class CtfLocationInfo implements Comparable<CtfLocationInfo> {
      *
      * @param bufferOut
      *            the buffer to write to
-     *
-     * @since 3.0
      */
     public void serialize(ByteBuffer bufferOut) {
         bufferOut.putLong(fTimestamp);
This page took 0.025138 seconds and 5 git commands to generate.