You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix missing support of return values in steps
* Make return value of a step optional
* Add missing "Optional" uses for step returns
Co-authored-by: Didier Vojtisek <[email protected]>
Copy file name to clipboardExpand all lines: framework/execution_framework/plugins/org.eclipse.gemoc.executionframework.engine/src/org/eclipse/gemoc/executionframework/engine/core/AbstractCommandBasedSequentialExecutionEngine.xtend
+17-10Lines changed: 17 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,18 @@
4
4
* are made available under the terms of the Eclipse Public License v1.0
5
5
* which accompanies this distribution, and is available at
Copy file name to clipboardExpand all lines: framework/execution_framework/plugins/org.eclipse.gemoc.executionframework.engine/src/org/eclipse/gemoc/executionframework/engine/core/AbstractExecutionEngine.java
Copy file name to clipboardExpand all lines: framework/execution_framework/plugins/org.eclipse.gemoc.executionframework.engine/src/org/eclipse/gemoc/executionframework/engine/core/AbstractSequentialExecutionEngine.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,12 @@
12
12
13
13
importjava.io.IOException;
14
14
importjava.util.ArrayList;
15
-
importjava.util.Arrays;
16
15
importjava.util.Collections;
17
16
importjava.util.HashMap;
18
17
importjava.util.HashSet;
19
18
importjava.util.List;
20
19
importjava.util.Map;
20
+
importjava.util.Optional;
21
21
importjava.util.Set;
22
22
23
23
importorg.eclipse.emf.ecore.EClass;
@@ -91,8 +91,8 @@ protected final void performStart() {
0 commit comments