From eb600144aa14bf6c5601b95c35a296568eab598e Mon Sep 17 00:00:00 2001
From: Luc Maisonobe <luc@orekit.org>
Date: Fri, 25 Jan 2019 10:35:29 +0100
Subject: [PATCH] Fixed wrong @Since.

---
 src/main/java/org/orekit/files/sp3/SP3File.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/orekit/files/sp3/SP3File.java b/src/main/java/org/orekit/files/sp3/SP3File.java
index cbbf4b099..2c43cd661 100644
--- a/src/main/java/org/orekit/files/sp3/SP3File.java
+++ b/src/main/java/org/orekit/files/sp3/SP3File.java
@@ -72,7 +72,7 @@ public class SP3File implements EphemerisFile {
         /** fitted after applying a Helmert transformation. */
         HLM,
         /** other type, defined by SP3 file producing agency.
-         * @since 9.4
+         * @since 9.3
          */
         OTHER;
 
@@ -156,7 +156,7 @@ public class SP3File implements EphemerisFile {
     private SP3OrbitType orbitType;
 
     /** Key for orbit type.
-     * @since 9.4
+     * @since 9.3
      */
     private String orbitTypeKey;
 
@@ -400,7 +400,7 @@ public class SP3File implements EphemerisFile {
 
     /** Returns the orbit type key for this SP3 file.
      * @return the orbit type key
-     * @since 9.4
+     * @since 9.3
      */
     public String getOrbitTypeKey() {
         return orbitTypeKey;
@@ -408,7 +408,7 @@ public class SP3File implements EphemerisFile {
 
     /** Set the orbit type key for this SP3 file.
      * @param oTypeKey the orbit type key to be set
-     * @since 9.4
+     * @since 9.3
      */
     void setOrbitTypeKey(final String oTypeKey) {
         this.orbitTypeKey = oTypeKey;
-- 
GitLab