Skip to content

Commit

Permalink
Add missing initialized flag set to FlowJob
Browse files Browse the repository at this point in the history
Issue #4142
  • Loading branch information
acktsap authored and fmbenhassine committed Jul 20, 2022
1 parent 1af6455 commit 8b6343f
Showing 1 changed file with 3 additions and 1 deletion.
@@ -1,5 +1,5 @@
/*
* Copyright 2006-2019 the original author or authors.
* Copyright 2006-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -35,6 +35,7 @@
*
* @author Dave Syer
* @author Mahmoud Ben Hassine
* @author Taeik Lim
* @since 2.0
*/
public class FlowJob extends AbstractJob {
Expand Down Expand Up @@ -84,6 +85,7 @@ public Step getStep(String stepName) {
*/
private void init() {
findSteps(flow, stepMap);
initialized = true;
}

/**
Expand Down

0 comments on commit 8b6343f

Please sign in to comment.