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

Revert "Fixed compiler warnings."

This reverts commit 3ff8b559.
parent 48ca006c
No related branches found
No related tags found
No related merge requests found
......@@ -489,7 +489,7 @@ public class Rugged {
return result;
} catch (RuggedException re) {
DumpManager.dumpException(re);
throw re;
throw(re);
}
}
......
......@@ -524,7 +524,7 @@ public class SensorMeanPlaneCrossing {
}
final UnivariateSolver solver = new BracketingNthOrderBrentSolver(accuracy, 5);
final double crossingLine = solver.solve(maxEval, f, minLine, maxLine, startValue);
double crossingLine = solver.solve(maxEval, f, minLine, maxLine, startValue);
final AbsoluteDate date = sensor.getDate(crossingLine);
final FieldVector3D<DerivativeStructure> targetDirection =
......
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