minor syntax fix

This commit is contained in:
Yury Tsarkov
2020-09-26 13:58:48 +03:00
committed by Janne Valkealahti
parent 45627e4f63
commit 8b6b848784

View File

@@ -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");
};