Skip to content

Commit

Permalink
Fixed wrong @SInCE.
Browse files Browse the repository at this point in the history
  • Loading branch information
maisonobe committed Jan 25, 2019
1 parent 8d4db12 commit eb60014
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/orekit/files/sp3/SP3File.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public enum SP3OrbitType {
/** fitted after applying a Helmert transformation. */
HLM,
/** other type, defined by SP3 file producing agency.
* @since 9.4
* @since 9.3
*/
OTHER;

Expand Down Expand Up @@ -156,7 +156,7 @@ public enum TimeSystem {
private SP3OrbitType orbitType;

/** Key for orbit type.
* @since 9.4
* @since 9.3
*/
private String orbitTypeKey;

Expand Down Expand Up @@ -400,15 +400,15 @@ void setOrbitType(final SP3OrbitType oType) {

/** 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;
}

/** 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;
Expand Down

0 comments on commit eb60014

Please sign in to comment.