Skip to content
Snippets Groups Projects
Commit 50e44738 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Fixed checkstyle warnings.

parent f3b5cca3
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ import org.orekit.time.AbsoluteDate;
public class FixedLOS implements TimeDependentLOS {
/** Fixed direction for los. */
final Vector3D los;
private final Vector3D los;
/** Simple constructor.
* @param los fixed direction for the line of sight
......@@ -35,8 +35,8 @@ public class FixedLOS implements TimeDependentLOS {
this.los = los;
}
/** {@inheritDoc}} */
public Vector3D getLOS(AbsoluteDate date) {
/** {@inheritDoc} */
public Vector3D getLOS(final AbsoluteDate date) {
return los;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment