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

Fixed checkstyle warnings.

parent a82ada1d
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
package org.orekit.rugged.los; package org.orekit.rugged.los;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.orekit.rugged.linesensor.LineSensor;
import org.orekit.time.AbsoluteDate; import org.orekit.time.AbsoluteDate;
/** Line-of-sight which does not depends on time. /** Line-of-sight which does not depends on time.
......
...@@ -27,7 +27,7 @@ import org.orekit.time.AbsoluteDate; ...@@ -27,7 +27,7 @@ import org.orekit.time.AbsoluteDate;
public class FixedRotation implements LOSTransform { public class FixedRotation implements LOSTransform {
/** Underlying rotation. */ /** Underlying rotation. */
final Rotation rotation; private final Rotation rotation;
/** Simple constructor. /** Simple constructor.
* @param rotation rotation to apply * @param rotation rotation to apply
...@@ -38,8 +38,8 @@ public class FixedRotation implements LOSTransform { ...@@ -38,8 +38,8 @@ public class FixedRotation implements LOSTransform {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public Vector3D transformLOS(int i, Vector3D los, AbsoluteDate date) { public Vector3D transformLOS(final int i, final Vector3D los, final AbsoluteDate date) {
return rotation.applyTo(los); return rotation.applyTo(los);
} }
} }
\ No newline at end of file
...@@ -36,7 +36,7 @@ import org.orekit.time.AbsoluteDate; ...@@ -36,7 +36,7 @@ import org.orekit.time.AbsoluteDate;
public class LOSBuilder { public class LOSBuilder {
/** Raw fixed ine-of-sights. */ /** Raw fixed ine-of-sights. */
public final List<Vector3D> rawLOS; private final List<Vector3D> rawLOS;
/** Transforms to be applied. */ /** Transforms to be applied. */
private final List<LOSTransform> transforms; private final List<LOSTransform> transforms;
...@@ -54,7 +54,6 @@ public class LOSBuilder { ...@@ -54,7 +54,6 @@ public class LOSBuilder {
*/ */
public void addTransform(final LOSTransform transform) { public void addTransform(final LOSTransform transform) {
transforms.add(transform); transforms.add(transform);
} }
/** Build a list of transformed lines-of-sight. /** Build a list of transformed lines-of-sight.
...@@ -106,7 +105,6 @@ public class LOSBuilder { ...@@ -106,7 +105,6 @@ public class LOSBuilder {
} }
return los.normalize(); return los.normalize();
} }
} }
} }
...@@ -31,4 +31,4 @@ interface LOSTransform { ...@@ -31,4 +31,4 @@ interface LOSTransform {
* @return transformed line-of-sight * @return transformed line-of-sight
*/ */
Vector3D transformLOS(int i, Vector3D los, AbsoluteDate date); Vector3D transformLOS(int i, Vector3D los, AbsoluteDate date);
} }
\ No newline at end of file
...@@ -28,13 +28,13 @@ import org.orekit.time.AbsoluteDate; ...@@ -28,13 +28,13 @@ import org.orekit.time.AbsoluteDate;
public class PolynomialRotation implements LOSTransform { public class PolynomialRotation implements LOSTransform {
/** Rotation axis. */ /** Rotation axis. */
final Vector3D axis; private final Vector3D axis;
/** Rotation angle polynomial. */ /** Rotation angle polynomial. */
final PolynomialFunction angle; private final PolynomialFunction angle;
/** Reference date for polynomial evaluation. */ /** Reference date for polynomial evaluation. */
final AbsoluteDate referenceDate; private final AbsoluteDate referenceDate;
/** Simple constructor. /** Simple constructor.
* @param axis rotation axis * @param axis rotation axis
...@@ -52,8 +52,8 @@ public class PolynomialRotation implements LOSTransform { ...@@ -52,8 +52,8 @@ public class PolynomialRotation implements LOSTransform {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public Vector3D transformLOS(int i, Vector3D los, AbsoluteDate date) { public Vector3D transformLOS(final int i, final Vector3D los, final AbsoluteDate date) {
return new Rotation(axis, angle.value(date.durationFrom(referenceDate))).applyTo(los); return new Rotation(axis, angle.value(date.durationFrom(referenceDate))).applyTo(los);
} }
} }
\ No newline at end of file
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
package org.orekit.rugged.los; package org.orekit.rugged.los;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.orekit.rugged.linesensor.LineSensor;
import org.orekit.time.AbsoluteDate; import org.orekit.time.AbsoluteDate;
/** Interface representing a line-of-sight which depends on time. /** Interface representing a line-of-sight which depends on time.
......
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