Skip to content

Commit e51fce9

Browse files
reducing issues with epsilon src
1 parent 2e13981 commit e51fce9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

plugins/org.epsilonlabs.modelflow.mmc.epsilon/src/org/epsilonlabs/modelflow/mmc/epsilon/task/AbstractEpsilonTask.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,6 @@ public void setSrc(File src) {
7878
this.src = Optional.ofNullable(src);
7979
}
8080

81-
@Param(key="src")
82-
public void setSrc(String src) {
83-
this.src = Optional.ofNullable(new File(src));
84-
}
85-
8681
@Input(key="src")
8782
public File getSrc() {
8883
return src.orElse(null);
@@ -205,7 +200,6 @@ public void execute(IModelFlowContext ctx) throws MFExecutionException {
205200
getModule().getContext().getNativeTypeDelegates().add(new ExtensionPointToolNativeTypeDelegate());
206201
}
207202
try {
208-
getModule().getContext().getModelRepository().getModels().stream().forEach(m->System.out.println(m.getName()));
209203
result = getModule().execute();
210204
} catch (EolRuntimeException e) {
211205
throw new MFExecutionException(e.getReason(), e);

0 commit comments

Comments
 (0)