minor syntax fix
This commit is contained in:
committed by
Janne Valkealahti
parent
45627e4f63
commit
8b6b848784
@@ -68,14 +68,14 @@ public class StateMachineConfig {
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Action<String, String> readyEntryction() {
|
||||
public Action<String, String> readyEntryAction() {
|
||||
return (context) -> {
|
||||
context.getExtendedState().getVariables().clear();
|
||||
};
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Action<String, String> preparedeployEntryAction() {
|
||||
public Action<String, String> prepareDeployEntryAction() {
|
||||
return (context) -> {
|
||||
System.out.println("Handle deploy prepare here");
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user