Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Orekit
Orekit
Commits
b73c4ae7
Commit
b73c4ae7
authored
Jan 19, 2023
by
Luc Maisonobe
Browse files
Merge branch 'issue-1020' into develop
parents
0f3cd591
89836792
Pipeline
#2948
passed with stages
in 38 minutes and 44 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/changes/changes.xml
View file @
b73c4ae7
...
...
@@ -21,6 +21,9 @@
</properties>
<body>
<release
version=
"12.0"
date=
"TBD"
description=
"TBD"
>
<action
dev=
"luc"
type=
"fix"
issue=
"1020"
>
Fixed regression introduced in ImpulseManeuver when fixing issue 1017.
</action>
<action
dev=
"luc"
type=
"update"
issue=
"1017"
>
Removed generics in EventHandler.
</action>
...
...
src/main/java/org/orekit/forces/maneuvers/ImpulseManeuver.java
View file @
b73c4ae7
...
...
@@ -196,7 +196,7 @@ public class ImpulseManeuver extends AbstractDetector<ImpulseManeuver> {
// filter underlying event
final
ImpulseManeuver
im
=
(
ImpulseManeuver
)
detector
;
final
Action
underlyingAction
=
im
.
trigger
.
getHandler
().
eventOccurred
(
s
,
detecto
r
,
increasing
);
final
Action
underlyingAction
=
im
.
trigger
.
getHandler
().
eventOccurred
(
s
,
im
.
trigge
r
,
increasing
);
return
(
underlyingAction
==
Action
.
STOP
)
?
Action
.
RESET_STATE
:
Action
.
CONTINUE
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment