Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / location / TmfLongLocation.java
index bb4209df9b821d548acd76791a2223395d52a8e4..36add37b8d0dca33b2bbd3aa0226f86e447b1963 100644 (file)
@@ -18,7 +18,6 @@ import java.nio.ByteBuffer;
  * A concrete implementation of TmfLocation based on Long:s
  *
  * @author Francois Chouinard
- * @since 3.0
  */
 public final class TmfLongLocation extends TmfLocation {
 
@@ -55,8 +54,6 @@ public final class TmfLongLocation extends TmfLocation {
      *
      * @param bufferIn
      *            the buffer to read from
-     *
-     * @since 3.0
      */
     public TmfLongLocation(ByteBuffer bufferIn) {
         this(bufferIn.getLong());
@@ -67,9 +64,6 @@ public final class TmfLongLocation extends TmfLocation {
         return (Long) super.getLocationInfo();
     }
 
-    /**
-     * @since 3.0
-     */
     @Override
     public void serialize(ByteBuffer bufferOut) {
         bufferOut.putLong(getLocationInfo().longValue());
This page took 0.026527 seconds and 5 git commands to generate.